DiscordStatsBot (Ciri) migrated from Javascript to Python because why not.
python3 -m venv ~/.venv/ciri
source ~/.venv/ciri/bin/activate
pip install -U -r requirements.txt
sudo apt-get update
sudo apt-get -y install postgresql postgresql-client postgresql-contrib
sudo -s
sudo -u postgres psql postgres
\password postgres
=> enter passwordCREATE EXTENSION adminpack;
CREATE USER your_shell_name WITH PASSWORD '********';
\q
exit
psql postgres
CREATE DATABASE your_db_name;
GRANT ALL PRIVILEGES ON DATABASE your_db_name TO your_shell_name;
\connect your_db_name
\i path_to_your_.sql_file
python3 launcher.py