diff options
author | Freya Murphy <freya@freyacat.org> | 2024-12-23 10:39:16 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-12-23 10:39:16 -0500 |
commit | de9cae795f93d03e68d965c59af4b21d96df4ec7 (patch) | |
tree | ad4f903c04630b3b92e2b9b5d06d5b8647d299bb /base.env | |
parent | license (diff) | |
download | crimson-de9cae795f93d03e68d965c59af4b21d96df4ec7.tar.gz crimson-de9cae795f93d03e68d965c59af4b21d96df4ec7.tar.bz2 crimson-de9cae795f93d03e68d965c59af4b21d96df4ec7.zip |
initial
Diffstat (limited to 'base.env')
-rw-r--r-- | base.env | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/base.env b/base.env new file mode 100644 index 0000000..8392c33 --- /dev/null +++ b/base.env @@ -0,0 +1,34 @@ +# ============================= GENERAL == + +# project name +PROJECT_NAME="crimson" + +# ================================= WEB == + +# What port to listen on +HTTP_BIND=127.0.0.1 +HTTP_PORT=80 + +# ============================ DATABASE == + +# Do we want the postgres database enabled +POSTGRES_ENABLED=false + +# Database authentication +POSTGRES_DB=postgres +POSTGRES_USER=postgres +POSTGRES_PASSWORD=postgres + +# ================================= API == + +# Do we want the postgrest api enabled +API_ENABLED=false + +# API Jwt Secret +API_SECRET="<base64>" + +# API Anonymous role +API_ROLE="anonymous" + +# API schema +API_SCHEMA="api" |