Skip to content

kerogs/SMSDv2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SMSDv2

Sword Master Story, Application for coupons with a little automated dashboard.

Note

SMSDv2 is still being tested. For the time being, please redirect you to the old version of SMS Dashboard.

Features

  • auto fetch codes

Docker build && run

docker build -t smsdv2
docker container run -d -p 5113:5113 smsdv2

db (devs)

CREATE TABLE coupons_used (
    id INTEGER PRIMARY KEY AUTOINCREMENT,
    ip TEXT,
    code TEXT
);

CREATE TABLE coupons_log (
    id INTEGER PRIMARY KEY AUTOINCREMENT,
    date TEXT,
    url TEXT,
    success INTEGER CHECK(success IN (0, 1))
);

CREATE TABLE coupons (
    id INTEGER PRIMARY KEY AUTOINCREMENT,
    code TEXT NOT NULL,
    type TEXT NOT NULL,
    reward TEXT NOT NULL,
    value TEXT NOT NULL,
    date TEXT NOT NULL,
    description TEXT NOT NULL
);

CREATE TABLE users (
    id INTEGER PRIMARY KEY AUTOINCREMENT,
    ip TEXT NOT NULL,
    username TEXT NOT NULL,
    pfp NOT NULL,
    date TEXT NOT NULL
)

CREATE TABLE teams_stats (
    id INTEGER PRIMARY KEY AUTOINCREMENT,
    ip TEXT NOT NULL,
    squad_power TEXT NOT NULL,
    squad_number TEXT NOT NULL
)

About

Sword Master Story, Website for coupons with a little automated dashboard. made in Python

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published