-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
.env.example
30 lines (26 loc) · 1.05 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
# This file is useful for doing local development
# when needing to load the postgres database secrets and start a locally running
# pizza oven service
# Database env vars
DATABASE_PORT=9999
DATABASE_HOST=localhost
DATABASE_USER=opensauced-admin
DATABASE_PASSWORD={YOUR-SECRET-PASSWORD-HERE}
DATABASE_DBNAME=pizza
# The port for the Pizza oven server to use
SERVER_PORT=8080
# The git provider to use for the pizza oven service.
# Must be one of "cache" or "memory" to designate the git provider that will be
# used to clone and access repos.
# - The "cache" git provider uses a local cache on disk to clone git repos into.
# This uses much less memory than in-memory cloning.
GIT_PROVIDER=cache
# The settings for the cached git repos.
# Must be set when "GIT_PROVIDER" is set to "cache"
#
# The root directory where the git repo cache should be stored
CACHE_DIR=/tmp
# The minimum amount of free disk in Gb to keep. This ensures that the cache
# does not completely fill the disk and allows for some buffer before items
# are evicted from the cache.
MIN_FREE_DISK_GB=25