-
Notifications
You must be signed in to change notification settings - Fork 3
/
.env.example
43 lines (38 loc) · 1.39 KB
/
.env.example
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
32
33
34
35
36
37
38
39
40
41
42
43
# SPDX-FileCopyrightText: 2023 froggie <[email protected]>
#
# SPDX-License-Identifier: OSL-3.0
# Used to expose server in Docker. Set to `localhost` if you don't want it exposed on loopback (non-Docker)
SRV_ADDR=
# Used for running server with both `make dev-server` and `make run`
SRV_PORT=3000
# Used for running webpack with `make dev-ui`
DEV_PORT=8080
# The name of the site
SITE_NAME="Trip Reporter"
# Used for auto-generated account names
WORDLIST=config/words_dictionary.json
# Used for configuring account creation
ACCOUNT_CONFIG=config/account_config.json
# Documentation URL
DOCS_URL=/docs
# Enable CORS debug logging. Not recommended unless troubleshooting a CORS issue, incredibly verbose.
CORS_LOGGING=false
# URL that requests are being served on, also used when creating apiClient. Change DEV_URL if you changed SRV_PORT.
VUE_APP_PROD_URL=https://subjective.report
VUE_APP_DEV_URL=http://localhost:3000
# Formkit Pro API key. This is locked to subjective.report in production. Change to use tripreporter on another domain.
VUE_APP_FORMKIT_API_KEY=fk-6272462eb3
# Used for connecting to PostgreSQL
DB_NAME=ei
DB_USER=ei
DB_PASS=admin
DB_HOST=localhost
DB_PORT=5432
# Used for connecting to Redis
REDIS_PASS=
REDIS_HOST=localhost
REDIS_PORT=6379
# Used in Docker. Don't touch this if you're not modifying `docker-compose.yml`
DOCKER_SRV_HOST=127.0.0.1
DOCKER_POSTGRES_HOST=postgres
DOCKER_REDIS_HOST=redis