summaryrefslogtreecommitdiffstats
path: root/api/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'api/README.md')
-rw-r--r--api/README.md28
1 files changed, 28 insertions, 0 deletions
diff --git a/api/README.md b/api/README.md
new file mode 100644
index 0000000..cee5886
--- /dev/null
+++ b/api/README.md
@@ -0,0 +1,28 @@
+# Api
+
+## Develop
+
+* Assumes you have `git clone`'d the repositiory.
+
+### Deps and Dev Env
+
+* Developed on `python 3.10.1`
+* Setting up a `venv`
+* ensure `django 4` is installed
+* `cd /api/`
+* `django startproject api`
+* Ensure deps are in order. `pip install -r requirements.txt`
+* `source .env` (called by `settings.py`)
+
+## Config
+
+Primaril refers to the envars and configs defined in `settings.py`.
+
+Such as:
+
+* added library declaration
+* Authentication middleware
+* Storage of static and media files
+* Access origin control
+* Logging
+* etc..