-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env
67 lines (51 loc) · 2.01 KB
/
.env
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
# .env file
### README ###
# Drakenfell Realm - Skill Forge Developers Environment
# This file contains important static variables loaded in the application during execution.
# Do NOT modify this content unless you know what you are doing.
# The variables are used to set up the application configurations.
# VERSION: The version of the application
# SERVER_IP_ADDR: The IP address of the server
# DEBUG_PORT: The port number for debugging the application
# SECRET_KEY: The secret key for the application
# Postgres Connection Dev Credentials
# DB_HOST: The host of the database
# DB_PORT: The port number of the database
# DB_NAME: The name of the database
# DB_USER: The username of the database
# DB_PASSWORD: The password of the database
# MongoDB Connection Credentials
# MONGO_USERNAME: The username of the MongoDB
# MONGO_PASSWORD: The password of the MongoDB
# MONGO_HOSTNAME: The hostname of the MongoDB
# MONGO_PRIMARY_PORT: The primary node port of the MongoDB
# MONGO_REPLICA_SET: The replica set of the MongoDB
# MONGO_AUTH_SOURCE: The authentication source of the MongoDB
# MONGO_DATABASE: The database of the MongoDB
# Piston API URL - Piston API endpoint
### EOF README ###
# GENERAL CONFIGS
VERSION="1.0.0"
SERVER_IP_ADDR=127.0.0.1
DEBUG_PORT=5000
# APPLICATION SECRET KEY
SECRET_KEY = 'iG3pV7L6Xp9Qw2mZjxYdTn7GfR53t4wNpMsU8KhBcWd'
# Postgres Connection Dev Credentials
DB_HOST=127.0.0.1
DB_PORT=5432
DB_NAME=skill_forge_dev
DB_USER=skill_forge
DB_PASSWORD=skill_forge
SQLALCHEMY_DATABASE_URI_DEV='postgresql://skill_forge:[email protected]:5432/skill_forge_dev'
# MongoDB Connection Credentials
MONGO_ADMIN_USERNAME = mongo_admin
MONGO_ADMIN_PASSWORD = mongo_admin
MONGO_USERNAME=skill_forge
MONGO_PASSWORD=skill_forge
MONGO_HOSTNAME=127.0.0.1
MONGO_PRIMARY_PORT="27017"
MONGO_AUTH_SOURCE=skill_forge_logs
MONGO_DATABASE=skill_forge_logs
MONGO_DATABASE_URI_DEV='mongodb://skill_forge:[email protected]:27017/?authSource=skill_forge_logs&directConnection=true'
# Piston API URL
PISTON_API_URL='http://piston-api:2000'