https://github.com/rssnyder/survivor-tracker
https://github.com/rssnyder/survivor-tracker
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/rssnyder/survivor-tracker
- Owner: rssnyder
- Created: 2024-03-19T02:08:12.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-26T22:13:21.000Z (over 1 year ago)
- Last Synced: 2025-02-26T23:20:51.886Z (over 1 year ago)
- Language: Python
- Size: 26.4 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```
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'
```