Description
The Quickstart guide lists make init-db as Method 2 for running database migrations:
This approach "loads DATABASE_URL from .env" automatically.
However, the repository does not contain a Makefile. The only file at the root is compose.yml. Running make init-db fails immediately:
make: *** No rule to make target 'init-db'. Stop.
Expected behavior
Either:
- A
Makefile with an init-db target should be included in the repository, or
- The documentation should be updated to remove the
make init-db reference if it's no longer the intended workflow.
Steps to reproduce
- Clone the repo
- Run
make init-db
- Observe the error
Context
Found during QA of the quickstart documentation.
Description
The Quickstart guide lists
make init-dbas Method 2 for running database migrations:However, the repository does not contain a
Makefile. The only file at the root iscompose.yml. Runningmake init-dbfails immediately:Expected behavior
Either:
Makefilewith aninit-dbtarget should be included in the repository, ormake init-dbreference if it's no longer the intended workflow.Steps to reproduce
make init-dbContext
Found during QA of the quickstart documentation.