justcool393
8873171f5c
right now, leaderboards are complex enough that they ought to be upgraded to at least a second class thing. this commit provides an *okay* implementation of a per-request leaderboard there are many things to be done, including caching, persistence, etc i don't like this like 80 parameter __init__ but it's what i've got without overengineering it imo this is potentially already overdoing it |
||
---|---|---|
.github/workflows | ||
chat | ||
files | ||
.gitattributes | ||
.gitignore | ||
CODE_OF_CONDUCT.md | ||
Dockerfile | ||
LICENSE | ||
dependabot.yml | ||
docker-compose.yml | ||
env | ||
gunicorn.conf.py | ||
nginx-serve-static.conf | ||
nginx.conf | ||
pg_hba.conf | ||
readme.md | ||
requirements.txt | ||
run_tests.py | ||
schema.sql | ||
seed-db.sql | ||
snappy_PCM.txt | ||
snappy_rDrama.txt | ||
startup.sh | ||
startup_chat.sh | ||
startup_docker.sh | ||
supervisord.conf | ||
ubuntu_setup.sh |
readme.md
This code runs https://rdrama.net, https://pcmemes.net and https://watchpeopledie.tv
Installation (Windows/Linux/MacOS)
1- Install Docker on your machine.
2- Run the following commands in the terminal:
git clone https://github.com/Aevann1/rDrama/
cd rDrama
docker-compose up
3- That's it! Visit localhost
in your browser and make an account (the first account to be made will have full admin rights)
4- Optional: to change the domain from "localhost" to something else and configure the site settings, as well as integrate it with the external services the website uses, edit the variables in the env
file and then restart the docker container.
For returning contributors, we have noticed the following issues (if you can help fix them, we will be very grateful!):
- Docker doesn't know when we add a new Python dependency,
docker-compose build
is needed. - DB schema changes are not applied automatically, the easiest way to deal with that is to delete the entire environment from the Docker GUI [1] and do
docker-compose up
. Also wait five minutes for a "sneed" commit from Aevann meaning that the sql file was regenerated.
[1] For command line users, this can be achieved by running docker rm CONTAINER
and docker volume rm VOLUME
. If you want to remove all docker containers and volumes at once, you can run docker rm $(docker ps -a -q) && docker volume rm $(docker volume ls -q)
, but please keep in mind that this will remove ALL docker environments, not just rDrama