├── .gitignore ├── LICENSE ├── README.md ├── app ├── app.py ├── js │ ├── commands.txt │ ├── error.js │ ├── globals.js │ ├── home.js │ ├── login.js │ ├── party_member.js │ └── party_owner.js ├── package-lock.json ├── package.json ├── static │ ├── css │ │ ├── home.css │ │ └── style.css │ ├── images │ │ ├── GitHub_Logo_White.png │ │ ├── cat.gif │ │ ├── copy.png │ │ ├── crown.png │ │ ├── favicon.png │ │ └── icon.png │ └── js │ │ ├── dropdown.js │ │ ├── globals.js │ │ ├── loggedin.js │ │ ├── login.js │ │ └── logout.js ├── templates │ ├── error.html │ ├── head.html │ ├── home.html │ ├── login.html │ ├── not_premium.html │ ├── party_member.html │ └── party_owner.html └── wsgi.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/README.md -------------------------------------------------------------------------------- /app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/app/app.py -------------------------------------------------------------------------------- /app/js/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/app/js/commands.txt -------------------------------------------------------------------------------- /app/js/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/app/js/error.js -------------------------------------------------------------------------------- /app/js/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/app/js/globals.js -------------------------------------------------------------------------------- /app/js/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/app/js/home.js -------------------------------------------------------------------------------- /app/js/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/app/js/login.js -------------------------------------------------------------------------------- /app/js/party_member.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/app/js/party_member.js -------------------------------------------------------------------------------- /app/js/party_owner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/app/js/party_owner.js -------------------------------------------------------------------------------- /app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/app/package-lock.json -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/app/package.json -------------------------------------------------------------------------------- /app/static/css/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/app/static/css/home.css -------------------------------------------------------------------------------- /app/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/app/static/css/style.css -------------------------------------------------------------------------------- /app/static/images/GitHub_Logo_White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/app/static/images/GitHub_Logo_White.png -------------------------------------------------------------------------------- /app/static/images/cat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/app/static/images/cat.gif -------------------------------------------------------------------------------- /app/static/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/app/static/images/copy.png -------------------------------------------------------------------------------- /app/static/images/crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/app/static/images/crown.png -------------------------------------------------------------------------------- /app/static/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/app/static/images/favicon.png -------------------------------------------------------------------------------- /app/static/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/app/static/images/icon.png -------------------------------------------------------------------------------- /app/static/js/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/app/static/js/dropdown.js -------------------------------------------------------------------------------- /app/static/js/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/app/static/js/globals.js -------------------------------------------------------------------------------- /app/static/js/loggedin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/app/static/js/loggedin.js -------------------------------------------------------------------------------- /app/static/js/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/app/static/js/login.js -------------------------------------------------------------------------------- /app/static/js/logout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/app/static/js/logout.js -------------------------------------------------------------------------------- /app/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/app/templates/error.html -------------------------------------------------------------------------------- /app/templates/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/app/templates/head.html -------------------------------------------------------------------------------- /app/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/app/templates/home.html -------------------------------------------------------------------------------- /app/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/app/templates/login.html -------------------------------------------------------------------------------- /app/templates/not_premium.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/app/templates/not_premium.html -------------------------------------------------------------------------------- /app/templates/party_member.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/app/templates/party_member.html -------------------------------------------------------------------------------- /app/templates/party_owner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/app/templates/party_owner.html -------------------------------------------------------------------------------- /app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/app/wsgi.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreerPage/spotify-party/HEAD/requirements.txt --------------------------------------------------------------------------------