fsd
This commit is contained in:
parent
71c1b361f7
commit
5bc9ff507c
2 changed files with 61 additions and 61 deletions
|
@ -2,66 +2,66 @@ version: '2.3'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
files:
|
files:
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
volumes:
|
volumes:
|
||||||
- "./:/service"
|
- "./:/service"
|
||||||
environment:
|
environment:
|
||||||
- DATABASE_URL=postgresql://postgres@postgres:5432
|
- DATABASE_URL=postgresql://postgres@postgres:5432
|
||||||
- MASTER_KEY=${MASTER_KEY:-KTVciAUQFpFh2WdJ/oiHJlxl6FvzRZp8kYzAAv3l2OA=}
|
- MASTER_KEY=${MASTER_KEY:-KTVciAUQFpFh2WdJ/oiHJlxl6FvzRZp8kYzAAv3l2OA=}
|
||||||
- REDIS_URL=redis://redis
|
- REDIS_URL=redis://redis
|
||||||
- DOMAIN=localhost
|
- DOMAIN=localhost
|
||||||
- SITE_NAME=Drama
|
- SITE_NAME=Drama
|
||||||
- GIPHY_KEY=3435tdfsdudebussylmaoxxt43
|
- GIPHY_KEY=3435tdfsdudebussylmaoxxt43
|
||||||
- FORCE_HTTPS=0
|
- FORCE_HTTPS=0
|
||||||
- DISCORD_SERVER_ID=3435tdfsdudebussylmaoxxt43
|
- DISCORD_SERVER_ID=3435tdfsdudebussylmaoxxt43
|
||||||
- DISCORD_CLIENT_ID=3435tdfsdudebussylmaoxxt43
|
- DISCORD_CLIENT_ID=3435tdfsdudebussylmaoxxt43
|
||||||
- DISCORD_CLIENT_SECRET=3435tdfsdudebussylmaoxxt43
|
- DISCORD_CLIENT_SECRET=3435tdfsdudebussylmaoxxt43
|
||||||
- DISCORD_BOT_TOKEN=3435tdfsdudebussylmaoxxt43
|
- DISCORD_BOT_TOKEN=3435tdfsdudebussylmaoxxt43
|
||||||
#- HCAPTCHA_SITEKEY=3435tdfsdudebussylmaoxxt43
|
#- HCAPTCHA_SITEKEY=3435tdfsdudebussylmaoxxt43
|
||||||
- HCAPTCHA_SECRET=3435tdfsdudebussylmaoxxt43
|
- HCAPTCHA_SECRET=3435tdfsdudebussylmaoxxt43
|
||||||
- YOUTUBE_KEY=3435tdfsdudebussylmaoxxt43
|
- YOUTUBE_KEY=3435tdfsdudebussylmaoxxt43
|
||||||
- PUSHER_KEY=3435tdfsdudebussylmaoxxt43
|
- PUSHER_KEY=3435tdfsdudebussylmaoxxt43
|
||||||
- CATBOX_KEY=3435tdfsdudebussylmaoxxt43
|
- CATBOX_KEY=3435tdfsdudebussylmaoxxt43
|
||||||
- SPAM_SIMILARITY_THRESHOLD=0.5
|
- SPAM_SIMILARITY_THRESHOLD=0.5
|
||||||
- SPAM_SIMILAR_COUNT_THRESHOLD=5
|
- SPAM_SIMILAR_COUNT_THRESHOLD=5
|
||||||
- SPAM_URL_SIMILARITY_THRESHOLD=0.1
|
- SPAM_URL_SIMILARITY_THRESHOLD=0.1
|
||||||
- COMMENT_SPAM_SIMILAR_THRESHOLD=0.5
|
- COMMENT_SPAM_SIMILAR_THRESHOLD=0.5
|
||||||
- COMMENT_SPAM_COUNT_THRESHOLD=5
|
- COMMENT_SPAM_COUNT_THRESHOLD=5
|
||||||
- READ_ONLY=0
|
- READ_ONLY=0
|
||||||
- BOT_DISABLE=0
|
- BOT_DISABLE=0
|
||||||
- COINS_NAME=Dramacoins
|
- COINS_NAME=Dramacoins
|
||||||
- DEFAULT_TIME_FILTER=all
|
- DEFAULT_TIME_FILTER=all
|
||||||
- DEFAULT_THEME=midnight
|
- DEFAULT_THEME=midnight
|
||||||
- DEFAULT_COLOR=ff66ac #YOU HAVE TO PICK ONE OF THOSE COLORS OR SHIT WILL BREAK: ff66ac, 805ad5, 62ca56, 38a169, 80ffff, 2a96f3, eb4963, ff0000, f39731, 30409f, 3e98a7, e4432d, 7b9ae4, ec72de, 7f8fa6, f8db58
|
- DEFAULT_COLOR=ff66ac #YOU HAVE TO PICK ONE OF THOSE COLORS OR SHIT WILL BREAK: ff66ac, 805ad5, 62ca56, 38a169, 80ffff, 2a96f3, eb4963, ff0000, f39731, 30409f, 3e98a7, e4432d, 7b9ae4, ec72de, 7f8fa6, f8db58
|
||||||
- SLOGAN=Dude bussy lmao
|
- SLOGAN=Dude bussy lmao
|
||||||
- GUMROAD_TOKEN=3435tdfsdudebussylmaoxxt43
|
- GUMROAD_TOKEN=3435tdfsdudebussylmaoxxt43
|
||||||
- GUMROAD_LINK=https://marsey1.gumroad.com/l/tfcvri
|
- GUMROAD_LINK=https://marsey1.gumroad.com/l/tfcvri
|
||||||
- CARD_VIEW=1
|
- CARD_VIEW=1
|
||||||
- DISABLE_DOWNVOTES=0
|
- DISABLE_DOWNVOTES=0
|
||||||
- DUES=0
|
- DUES=0
|
||||||
- MAIL_USERNAME=blahblahblah@gmail.com
|
- MAIL_USERNAME=blahblahblah@gmail.com
|
||||||
- MAIL_PASSWORD=3435tdfsdudebussylmaoxxt43
|
- MAIL_PASSWORD=3435tdfsdudebussylmaoxxt43
|
||||||
links:
|
links:
|
||||||
- "redis"
|
- "redis"
|
||||||
- "postgres"
|
- "postgres"
|
||||||
ports:
|
ports:
|
||||||
- "80:80"
|
- "80:80"
|
||||||
depends_on:
|
depends_on:
|
||||||
- redis
|
- redis
|
||||||
- postgres
|
- postgres
|
||||||
|
|
||||||
redis:
|
redis:
|
||||||
image: redis
|
image: redis
|
||||||
ports:
|
ports:
|
||||||
- "6379:6379"
|
- "6379:6379"
|
||||||
|
|
||||||
postgres:
|
postgres:
|
||||||
image: postgres:12.3
|
image: postgres:12.3
|
||||||
volumes:
|
volumes:
|
||||||
- "./schema.sql:/docker-entrypoint-initdb.d/00-schema.sql"
|
- "./schema.sql:/docker-entrypoint-initdb.d/00-schema.sql"
|
||||||
- "./seed-db.sql:/docker-entrypoint-initdb.d/01-schema.sql"
|
- "./seed-db.sql:/docker-entrypoint-initdb.d/01-schema.sql"
|
||||||
environment:
|
environment:
|
||||||
- POSTGRES_HOST_AUTH_METHOD=trust
|
- POSTGRES_HOST_AUTH_METHOD=trust
|
||||||
ports:
|
ports:
|
||||||
- "5432:5432"
|
- "5432:5432"
|
|
@ -5,7 +5,7 @@ Flask
|
||||||
Flask-Caching
|
Flask-Caching
|
||||||
Flask-Compress
|
Flask-Compress
|
||||||
Flask-Limiter==1.1.0
|
Flask-Limiter==1.1.0
|
||||||
Flask-Mail
|
Flask-Mail==0.9.1
|
||||||
gevent
|
gevent
|
||||||
greenlet
|
greenlet
|
||||||
gunicorn
|
gunicorn
|
||||||
|
@ -23,4 +23,4 @@ psycopg2-binary
|
||||||
pusher_push_notifications
|
pusher_push_notifications
|
||||||
youtube-dl
|
youtube-dl
|
||||||
yattag
|
yattag
|
||||||
webptools
|
webptools
|
Loading…
Add table
Add a link
Reference in a new issue