diff options
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" |