Skip to content
This repository was archived by the owner on Jan 17, 2020. It is now read-only.

Commit 865344f

Browse files
committed
Add .env to gitignore
1 parent 2f05674 commit 865344f

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

.env.sample

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
CLIENT_ID="DISCORD BOT CLIENT ID"
2+
CLIENT_SECRET="DISCORD BOT CLIENT SECRET"
3+
REDIS_HOST="REDIS HOST"
4+
REDIS_PORT=6379
5+
REDIS_DB=0
6+
REDIS_PASSWORD="REDIS PASSWORD"
7+
BASE_URL="http://127.0.0.1:5000"
8+
API_VERSION="v1"
9+
FLASK_HOST="0.0.0.0"
10+
FLASK_PORT=5000
11+
MONGO_URI="mongodb://user:password@host:27017"
12+
BOT_API_BASE_URL="http://127.0.0.1:5001"

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,6 @@ venv/**
6868
flask_session/**
6969

7070
# ignore tmp files
71-
tmp/**
71+
tmp/**
72+
73+
.env

0 commit comments

Comments
 (0)