We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d75c88 commit 3f92a57Copy full SHA for 3f92a57
README.md
@@ -73,6 +73,16 @@ From the `api` folder run the following to create `openapi.yaml` in the `./docs/
73
docker-compose exec api bash -c "bin/console api:openapi:export --yaml" > ./docs/generated/openapi.yaml
74
```
75
76
+## Install database and data
77
+1. Run the migrations
78
+```bash
79
+docker-compose exec api bash -c 'bin/console doctrine:migrations:migrate'
80
+```
81
+
82
+2. Run the data fixtures
83
84
+docker-compose exec api bash -c 'bin/console doctrine:fixtures:load'
85
86
## Accessing the projects
87
88
- The API can be reached at [http://api.codequiz.local/api/v1](http://api.codequiz.local/api/v1)
0 commit comments