-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.example
36 lines (24 loc) · 924 Bytes
/
.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
# Since .env is gitignored, you can use .env.example to build a new `.env` file when you clone the repo.
# Keep this file up-to-date when you add new variables to \`.env\`.
# This file will be committed to version control, so make sure not to have any secrets in it.
# If you are cloning this repo, create a copy of this file named `.env` and populate it with your secrets.
DATABASE_URL=postgresql://postgres@localhost:5432/postgres
SESSION_SECRET=SUPERSECRET
NEXT_PUBLIC_APP_URL=http://localhost:3000
S3_ACCESS_KEY=minioadmin
S3_SECRET_KEY=minioadmin
S3_BUCKET=1upsaas-storage
S3_ENDPOINT=http://127.0.0.1:9000
S3_MAX_SIZE=10mb
NEXT_PUBLIC_GITHUB_CLIENT_ID=123
GITHUB_CLIENT_SECRET=456
NEXT_PUBLIC_GOOGLE_CLIENT_ID=123
GOOGLE_CLIENT_SECRET=456
APP_EMAIL=admin@dir.zip
SMTP_HOST=smtp.postmarkapp.com
SMTP_PORT=587
SMTP_USERNAME=123
SMTP_PASSWORD=456
REDIS_HOST=http://127.0.0.1
REDIS_PORT=6379
ENV="development"