File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -97,3 +97,17 @@ Docker Volumes for production:
97
97
.env file
98
98
99
99
* EMAIL_BACKEND_CONSOLE=False
100
+
101
+ ## Notes to Developers
102
+
103
+ - When setting up the app (from scratch or from a wipe), the following commands should be run:
104
+ - (Optional) ` make build `
105
+ - ` make up ` - wait for the database to start, then hit Control-C
106
+ - ` make migrate `
107
+ - ` make up ` - runs the app
108
+ - To wipe the database, use ` make down `
109
+ - The Django admin interface is at ` /admin/ `
110
+ - An admin user can be created through ` make create-super-user `
111
+ - To run a single module of tests, you can pass the Makefile ` module ` variable on the command line. For instance, to run
112
+ only tests defined in [ ` test_document_admin.py ` ] ( ./app/general/tests/test_document_admin.py ) , run
113
+ ` make test module=general.tests.test_document_admin `
You can’t perform that action at this time.
0 commit comments