-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
47 lines (35 loc) · 1.1 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
###############
# General
###############
# For more: https://docs.strapi.io/dev-docs/configurations/environment
# Environment (development, production)
NODE_ENV=development
TELEGRAM_SECRET=00000000.xxxxxxxxxxxxxxxxxxx
# Host configuration
HOST=0.0.0.0
PORT=1337
###############
# Database
###############
# For local develemnt, you can use sqlite3 database
DATABASE_CLIENT=sqlite
# For production, you should use postgresql database (and configure it below)
# DATABASE_CLIENT=postgres
# DATABASE_HOST=localhost
# DATABASE_PORT=5432
# DATABASE_NAME=cow-cms
# DATABASE_USERNAME=cow
# DATABASE_PASSWORD=moooo
# DATABASE_SSL=false
###############
# Security
###############
# Keys & salts used to generate tokens
APP_KEYS="toBeModified1,toBeModified2" # The secret keys used to sign session cookies, follows the format: key1, key2, ...
# Salt used to generate API tokens
API_TOKEN_SALT=tobemodified
# JWT secrets
ADMIN_JWT_SECRET=tobemodified
JWT_SECRET=tobemodified
# The salt used to generate a transfer token. Transfer tokens are used to migrate data between Strapi instances.
TRANSFER_TOKEN_SALT=tobemodified