-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.default
40 lines (30 loc) · 1.06 KB
/
.env.default
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
# Environment variables declared in this file are automatically made available to Prisma.
# See the documentation for more detail: https://pris.ly/d/prisma-schema#accessing-environment-variables-from-the-schema
# Prisma supports the native connection string format for PostgreSQL, MySQL, SQLite, SQL Server, MongoDB and CockroachDB.
# See the documentation for all the connection string options: https://pris.ly/d/connection-strings
NODE_ENV="development"
#NEXT
NEXTAUTH_SECRET="my-secret-key"
NEXTAUTH_URL="http://localhost:3000"
PUBLIC_URL='localhost'
PUBLIC_IP="0.0.0.0"
#Docker settings
DOCKER_BASE_PATH="applications"
DOCKER_NETWORK_NAME="self-press"
#SQLite Database URL
DATABASE_URL="file:./dev.db"
#Docker MySQL & PhpMyAdmin Settings
MYSQL_ROOT_PASSWORD="mypassword"
MYSQL_PUBLIC_PORT="3306"
MYSQL_CONTAINER_NAME="mysql-main"
PHPMYADMIN_CONTAINER_NAME="phpmyadmin"
#NGINX
NGINX_CONTAINER_NAME="nginx-container"
#Redis
REDIS_CONTAINER_NAME="redis-container"
#SFTP
SFTP_CONTAINER_NAME="sftp-container"
SFTP_PORT="2222"
#Cloudflare
CLOUDFLARE_EMAIL=""
CLOUDFLARE_API_KEY=""