A Django application for saving code snippets in various programming languages.
- Python 3.x
- pip
- virtualenv
To view the site as deployed on Heroku, you can visit https://django-snippet-saver.herokuapp.com/.
If you would like to run the site locally, please ensure that you have installed the prerequisites, then follow the steps below:
- Clone this repository to your machine with
git clone http://github.com/mchlltt/django-snippet-saver.git
. - Navigate to the cloned directory.
- Create a virtual environment with
virtualenv env
. - Activate the environment with
source env/bin/activate
. - Install the application requirements with
pip install -r requirements.txt
(orpip3 manage.py runserver
.) - Start the server with
python manage.py runserver
(orpython3 manage.py runserver
.) - The application will be running at
localhost:8000/
.
- Django (Web framework)
- SQLite (Local database)
- Bootstrap (Front-end framework)
- Heroku (Cloud platform)
- Heroku PostgreSQL (Cloud database)
Mich Elliott - mchlltt
This project is licensed under the MIT License - see the LICENSE file for details.