-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.example
76 lines (61 loc) · 2.03 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
###########################################################
###################### General Setup ######################
###########################################################
COMPOSE_PROJECT_NAME=blog
BUILDKIT_PROGRESS=auto
TZ=Asia/Ho_Chi_Minh
### USER SETTING
USER_ID=1000
GROUP_ID=1000
# ##################### PATH SETUP ######################
# Path to your code folder
# Example: SOURCE_CODE_PATH=/Users/tanhongit/Data/cslant/sources
SOURCE_CODE_PATH=../src
# Path to your data folder
DATA_PATH=./data
LOG_PATH=./logs
# ##################### DOCKER-COMPOSE ######################
### PHP
PHP_VERSION=8.3
PHP_VERSION_SHORT=83
### NGINX
NGINX_HOST_HTTP_PORT=80
NGINX_HOST_HTTPS_PORT=443
## POSTGRES
POSTGRES_USER=root
POSTGRES_PASSWORD=root
POSTGRES_DB=cslant_blog
POSTGRES_HOST_PORT=5432
ELASTIC_STACK_VERSION=8.14.3
## ELASTICSEARCH
ELASTICSEARCH_DISCOVERY_TYPE=single-node
ELASTICSEARCH_XPACK_SECURITY_ENABLED=false
ELASTICSEARCH_JAVA_OPTS="-Xms512m -Xmx512m"
ELASTICSEARCH_HTTP_PORT=9200
ELASTICSEARCH_TRANSPORT_PORT=9300
## #################### TOOL #########################
## POSTGRES ADMINER
PGADMIN_HOST_PORT=5050
PGADMIN_DEFAULT_EMAIL=admin@cslant.com
PGADMIN_DEFAULT_PASSWORD=admin
## KIBANA
KIBANA_PORT=5601
# ##################### REMOTE REPOSITORY ######################
## REMOTE REPOSITORY
GIT_SSH_URL="git@github.com:cslant"
GIT_TOKEN=
DATABASE_FILE_NAME=cslant_blog
# ##################### DOMAIN SETTING ######################
CSLANT_DOMAIN=cslant.com.local
BLOG_DOMAIN=blog.cslant.com.local
BLOG_API_DOMAIN=api.blog.cslant.com.local
BLOG_ADMIN_DOMAIN=admin.blog.cslant.com.local
## Need to change the value to sync with the value of BLOG_API_ROUTE_PREFIX in the .env file of the blog-admin project.
BLOG_API_ROUTE_PREFIX=cs-api
## Need to change the value to sync with the value of ADMIN_DIR in the .env file of the blog-admin project.
BLOG_ADMIN_DIR=hello
### Using the command to run the frontend project
### Ex: dev, build, start,... (script in package.json)
FE_COMMAND=start
## SSL Domain (true: https,http | false: http)
IS_SSL=false