-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.env.example
More file actions
31 lines (25 loc) · 1.05 KB
/
Copy path.env.example
File metadata and controls
31 lines (25 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Copy to .env and edit before running `docker compose up`.
# cp .env.example .env
#
# .env is git-ignored. Never commit real credentials.
# ---- Database ----
# SQL Server requires at least 8 characters with upper case, lower case,
# digits and symbols, or the container will refuse to start.
MSSQL_SA_PASSWORD=ChangeMe_Str0ng!Pass
MSSQL_DATABASE=Taskist
MSSQL_PORT=1433
# ---- Application ----
TASKIST_PORT=8080
ASPNETCORE_ENVIRONMENT=Production
# Required. Minimum 32 characters, unique to this deployment.
# Generate one with: openssl rand -base64 32
# The application will refuse to start if this is missing or left at a published value.
TASKIST_SECURITY_ENCRYPTIONKEY=
# Restrict cookies to HTTPS. The sample stack serves plain HTTP, so this
# defaults to false. Set to true once Taskist sits behind TLS.
TASKIST_REQUIRE_HTTPS_COOKIES=false
# ---- Seeding ----
# Reference data (roles, permissions, translations). Leave true for a usable install.
SEED_DATA=true
# Sample projects and tasks, useful for evaluating Taskist. Not for production.
SEED_DUMMY_DATA=false