forked from falcondev-oss/github-actions-cache-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env
More file actions
33 lines (28 loc) · 671 Bytes
/
.env
File metadata and controls
33 lines (28 loc) · 671 Bytes
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
API_BASE_URL=http://localhost:3000
DEBUG=true
# filesystem
STORAGE_DRIVER=filesystem
STORAGE_FILESYSTEM_PATH=.data/storage/filesystem
# s3
# STORAGE_DRIVER=s3
# STORAGE_S3_BUCKET=test
# AWS_ENDPOINT_URL=http://minio:9000
# AWS_ACCESS_KEY_ID=minioadmin
# AWS_SECRET_ACCESS_KEY=minioadmin
# sqlite
DB_DRIVER=sqlite
DB_SQLITE_PATH=.data/sqlite.db
# postgres
# DB_DRIVER=postgres
# DB_POSTGRES_DATABASE=postgres
# DB_POSTGRES_HOST=localhost
# DB_POSTGRES_USER=postgres
# DB_POSTGRES_PASSWORD=postgres
# DB_POSTGRES_PORT=5432
# mysql
# DB_DRIVER=mysql
# DB_MYSQL_DATABASE=mysql
# DB_MYSQL_HOST=localhost
# DB_MYSQL_USER=root
# DB_MYSQL_PASSWORD=root
# DB_MYSQL_PORT=3306