A Django Bootstrap Template Including:
Static files include:
- Bootstrap (3.3.7)
- JQuery (3.1.1)
- Font Awesome (4.7)
Default setup uses these modules:
- Logging
- ConfigParser
Notes for running under Python 2:
- Add
configparserto therequirements.txt.- Or run
pip install configparsermanually.
- Or run
- Use
virtualenvinstead ofvenv.
To clone a clean copy of this project int your repository:
cdinto development directorygit clone https://git.cssnr.com/shane/django_bootstrap.git .rm -rf .gitgit initgit remote add origin https://github.com/your-name/your-repo.gitgit push -u origin master
To deploy this project on the development server:
cdinto deploy directorygit clone https://git.cssnr.com/shane/django_bootstrap.git .pyvenv venvsource venv/bin/activatepip install -r requirements.txtcp settings.ini.example settings.ini- Edit the settings to your preference.
python manage.py runserver 0.0.0.0:8000