Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
marevol committed Dec 6, 2024
1 parent 8540c6f commit 1185e02
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
run: yarn --check-files --frozen-lockfile --non-interactive
- name: "run-test"
run: |
docker composel build
docker composel up -d
docker compose build
docker compose up -d
until curl -f http://localhost:8000/api/ping/
do
echo "not success"
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
- name: Run test
shell: bash
run: |
docker composel -f compose-test.yaml up --exit-code-from backend
docker compose -f compose-test.yaml up --exit-code-from backend
- name: "save coverage"
uses: actions/upload-artifact@v4
with:
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ There are two ways to start using Recotem. Both requires [latest docker](https:/
1. Download "Docker resources to try out" from Assets
1. Unzip it and
- (Windows) Click "recotem-compose" script
- (Linux & MacOS) Run `docker composel` there.
- (Linux & MacOS) Run `docker compose` there.
```sh
docker composel up`
docker compose up`
```

See [https://recotem.org/guide/installation.html]([https://recotem.org/guide/installation.html]) for a friendlier introduction.
Expand All @@ -40,7 +40,7 @@ See [https://recotem.org/guide/installation.html]([https://recotem.org/guide/ins
1. Clone this repository.
2. In the repository top directory, simply run
```sh
docker composel up
docker compose up
```

## Development
Expand All @@ -50,8 +50,8 @@ See [https://recotem.org/guide/installation.html]([https://recotem.org/guide/ins
To run the backend (and worker) in Django development mode, use `compose-dev.yaml`.

```
docker composel -f compose-dev.yaml build
docker composel -f compose-dev.yaml up
docker compose -f compose-dev.yaml build
docker compose -f compose-dev.yaml up
```
### frontend
Expand Down

0 comments on commit 1185e02

Please sign in to comment.