Skip to content

Commit 73f034a

Browse files
authored
Merge pull request #360 from g-kedev/minor-fixes-to-run-demo
Minor fixes to run demo
2 parents 3e14356 + 135363e commit 73f034a

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
loaddata:
2-
@docker-compose exec caluma ./manage.py loaddata setup/example-data.json
2+
@docker compose exec caluma poetry run ./manage.py loaddata setup/example-data.json
33

44
flush:
5-
@docker-compose exec caluma ./manage.py flush --no-input
5+
@docker compose exec caluma poetry run ./manage.py flush --no-input

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ To load some example data you can run `make loaddata`.
1313
If you get exceptions from `make loaddata` make sure that the caluma container
1414
is running *and* has all migrations finished.
1515

16+
> [!NOTE]
17+
> This Project uses Docker Compose v2, which uses the `docker compose` command instead of `docker-compose`. If you have Docker Compose v1 installed it is strongly recommended to upgrade to v2, but if for some reason this isn't possible you can just change the command in the Makefile.
18+
1619
To start the ember development server, use:
1720
```bash
1821
cd ember && yarn && yarn start-proxy

0 commit comments

Comments
 (0)