From de9cae795f93d03e68d965c59af4b21d96df4ec7 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Mon, 23 Dec 2024 10:39:16 -0500 Subject: initial --- base.env | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 base.env (limited to 'base.env') 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="" + +# API Anonymous role +API_ROLE="anonymous" + +# API schema +API_SCHEMA="api" -- cgit v1.2.3-freya