Django Twitch

build status coverage report

Awesome Amazing Tools...

Frameworks

Development

Deployment

To deploy this project on the development server:

git clone https://git.cssnr.com/shane/cssnr-tools.git
cd cssnr-tools
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 createsuperuser
python manage.py runserver 0.0.0.0:8000

You then need to update your Oauth settings in the Django admin.

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/cssnr-tools.git
cd cssnr-tools
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...