Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xanimo/isnippets
https://github.com/xanimo/isnippets
django heroku python
Last synced: 27 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/xanimo/isnippets
- Owner: xanimo
- Created: 2018-04-07T15:59:29.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-10T20:47:19.000Z (almost 7 years ago)
- Last Synced: 2024-11-25T15:11:39.735Z (3 months ago)
- Topics: django, heroku, python
- Language: Python
- Size: 22.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# iSnippets
iSnippets, built with Django and Python.https://snipitgood.herokuapp.com/
## Understand
This is a simple application in Python that allows users to store snippets for future reference.## Tests
In order to run this locally, clone this repo then:
Create a virtual environment
```
virtualenv env
```Activate the virtual environment
```
source env/bin/activate
```Then while in the virtual environment...
Install the application requirements with either of the following commands
```
pip3 install -r requirements.txt
```Run migrate
```
python3 manage.py migrate
```Run the server at PORT 8000
```
python3 manage.py runserver
```