snipt/README.md

24 lines
869 B
Markdown
Raw Normal View History

# Snipt
This is the codebase for the website, [Snipt.net](https://snipt.net/).
It's a relatively well-kept Django app, so you shouldn't have too many problems
2012-11-15 08:06:24 -08:00
getting a local copy running.
2012-11-15 08:06:40 -08:00
If you need help, visit `#snipt` on irc.freenode.net.
# Running the Django app
1. Clone the repo.
2. Setup a virtualenv.
2012-10-02 16:09:39 -07:00
3. `pip install -r requirements.txt`
4. `pip install --index-url https://code.stripe.com --upgrade stripe`
2012-10-02 16:33:01 -07:00
5. Copy local_settings-template.py to local_settings.py and edit the settings.
6. Comment out [this line](https://github.com/nicksergeant/snipt/blob/master/snipts/models.py#L19) from `snipts/models.py`
7. `python manage.py syncdb`
8. `python manage.py migrate`
9. Uncomment the line in `snipt/models.py`
10. `python manage.py runserver`
2012-09-18 16:36:25 -07:00
Any problems / questions / bugs, [create an issue](https://github.com/nicksergeant/snipt/issues). Thanks! :)