diff options
| author | Tobias McNulty <tobias@caktusgroup.com> | 2025-10-13 09:46:57 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-13 09:46:57 -0400 |
| commit | 1612897142120c6aa61918d4095fb5c69a20eea3 (patch) | |
| tree | e6b4ce0fdde91ac10461f2592959cfdd130b877b /README.rst | |
| parent | 3640cc55b5e57179f5c740b527ab9acf50b1cb5d (diff) | |
Streamlined and added CI steps for docker compose (#2207)
Diffstat (limited to 'README.rst')
| -rw-r--r-- | README.rst | 20 |
1 files changed, 17 insertions, 3 deletions
@@ -343,12 +343,26 @@ Running Locally with Docker docker compose up -3. View the site at http://localhost:8000/ - -4. Run the tests:: +3. Run the tests:: docker compose run --rm web python -m manage test +4. Load the sample / local dev data:: + + docker compose run --rm web make reset-local-db + + If preferred, refer to the "Install and run locally from a virtual environment" + for more granular management commands to load specific data sets. + +5. View the site at http://www.djangoproject.localhost:8000/ + or http://dashboard.djangoproject.localhost:8000/. + +6. For docs, download the documentation (takes awhile):: + + docker compose exec -it web python -m manage update_docs + +7. View the docs at http://docs.djangoproject.localhost:8000/. + Pre-commit checks ----------------- |
