https://github.com/smashedr/multichat-web
https://github.com/smashedr/multichat-web
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/smashedr/multichat-web
- Owner: smashedr
- Created: 2022-01-04T07:52:32.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-01-04T07:52:42.000Z (over 4 years ago)
- Last Synced: 2025-02-25T08:15:39.808Z (over 1 year ago)
- Language: Python
- Size: 1.75 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MultiChat Twitch Bot Web UI
[](https://git.cssnr.com/shane/multichat-web/commits/master) [](https://git.cssnr.com/shane/multichat-web/commits/master)
This is a basic Django Framework that is being transformed into more jank...
# Features
### Twitch Oauth
Twitch Oauth managed from Django admin.
### Frameworks
- Django (2.1.5) https://www.djangoproject.com/
- Bootstrap (4.2.1) http://getbootstrap.com/
- Font Awesome (5.6.3) http://fontawesome.io/
- JQuery (3.3.1) https://jquery.com/
# Development
### Deployment
To deploy this project on the development server:
```
git clone https://git.cssnr.com/shane/multichat-web.git
cd shane/multichat-web
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 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/multichat-web.git
cd django-twitch-basic
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...*