Bootcamp is an open source social network built with Python using the Django Web Framework.
- Add Guest access
- Migrate to python3
- Update Django to lastest version
- Internationalization add Chinese support
- Use Travi CI auto test and deploy to heroku
- Add Unittest
- Code style pep8 format
$ git clone https://github.com/qulc/bootcamp.git
$ cd bootcamp/
# Use Python3 virtualenv
$ pyvenv venv && source venv/bin/activate
$ pip install -U -r requirements.txt
# Create Tables
$ python manage.py makemigrations
$ python manage.py migrate
# Run
$ python manage.py runserver