https://github.com/smashedr/twitch-oauth-generator
https://github.com/smashedr/twitch-oauth-generator
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/smashedr/twitch-oauth-generator
- Owner: smashedr
- Created: 2022-01-04T07:40:21.000Z (over 4 years ago)
- Default Branch: docker
- Last Pushed: 2022-01-04T07:40:31.000Z (over 4 years ago)
- Last Synced: 2025-01-07T22:17:00.753Z (over 1 year ago)
- Language: Python
- Size: 2.08 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Twitch OAuth Generator
[](https://git.cssnr.com/shane/twitch-oauth-generator/commits/master) [](https://git.cssnr.com/shane/twitch-oauth-generator/commits/master)
This is a Django Framework for a Twitch OAuth Generator.
### Frameworks
- Django (2.1.2) https://www.djangoproject.com/
- Bootstrap (4.1.3) http://getbootstrap.com/
- Font Awesome (5.4.2) http://fontawesome.io/
# Development
### Deployment
To deploy this project on the development server:
```
git clone https://git.cssnr.com/shane/twitch-oauth-generator.git
cd django-twitch
pyvenv venv
source venv/bin/activate
python -m pip install -r requirements.txt
cp settings.ini.example settings.ini
python manage.py makemigrations
python manage.py migrate
python manage.py loaddata site-fixtures.json
python manage.py loaddata social-fixtures.json
python manage.py runserver 0.0.0.0:8000
```
*Note: Make sure to update the `settings.ini` with the necessary details...*
### Copying This Project
To clone a clean copy of this project int your repository:
```
git clone https://git.cssnr.com/shane/twitch-oauth-generator.git
cd django-twitch
rm -rf .git
git init
git remote add origin https://github.com/your-org/your-repo.git
git push -u origin master
```
*Note: make sure to replace `your-org/your-repo.git` with your actual repository location...*