No description
  • Python 98.1%
  • Dockerfile 1.9%
Find a file
2025-04-08 21:31:05 -05:00
.gitignore feat: spoiler timestamps; toml config 2024-10-18 02:25:03 +00:00
config.toml.example fix: signal no longer shows numbers by default, use names instead 2025-04-08 21:04:16 -05:00
Dockerfile init 2024-03-18 21:35:50 -05:00
main.py fix usernames in total scores 2024-10-28 18:08:25 +00:00
README.md add how many times youve been first 2024-03-18 21:59:38 -05:00
requirements.txt feat: spoiler timestamps; toml config 2024-10-18 02:25:03 +00:00
signalm.py feat: spoiler timestamps; toml config 2024-10-18 02:25:03 +00:00
spoilers.py fix: signal no longer shows numbers by default, use names instead 2025-04-08 21:04:16 -05:00

create database survivor;
create table survivorLog (
  id SERIAL PRIMARY KEY,
  username VARCHAR(64) NOT NULL,
  season int NOT NULL,
  episode int NOT NULL,
  position int NOT NULL,
  timestamp TIMESTAMP
);
create user jeff with encrypted password 'xxx';
grant all privileges on database survivor to jeff;
grant all privileges on survivorLog to jeff;
grant all ON survivorLog_id_seq to jeff;
export DB_HOST=192.168.0.3
export DB_DB=survivor
export DB_USER=jeff
export DB_PASS=xxxxx

export SIGNAL_API=http://192.168.254.11
export SIGNAL_FROM='+14808407117'
export SIGNAL_TO='+15159792049'