Skip to content

erfanhs/bitko

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bitko

Online Chat Rooms For Everyone.
Bitko, where people talk online with each other on various topics.

Alt text Alt text Alt text

To run the backend:

git clone https://github.com/erfanhs/bitko.git
pip3 install virtualenv
virtualenv venv
source venv/bin/activate
cd bitko
pip install -r requirements.txt
python manage.py makemigrations
python manage.py migrate
python manage.py runserver

Make sure you have an instance of redis running.

To run the frontend:

cd bitko/frontend
sudo npm i
sudo npm start

To build for deployment:

cd bitko/frontend
sudo npm run-script build