Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pennomi/openwest2015-twitter-clone

Source repository for the Django / Django Rest Framework / Angular presentation for the OpenWest 2015 Conference.
https://github.com/pennomi/openwest2015-twitter-clone

Last synced: about 1 month ago
JSON representation

Source repository for the Django / Django Rest Framework / Angular presentation for the OpenWest 2015 Conference.

Awesome Lists containing this project

README

        

# Django / DRF / Angular Demo App for OpenWest 2015

To get set up follow the steps:

```bash
# Clone the repository
git clone https://github.com/pennomi/openwest2015-twitter-clone.git
cd openwest2015-twitter-clone

# Create a virtualenv
mkvirtualenv --python=/usr/bin/python3 twitter-clone

# Install the requirements
pip install -r requirements.txt

# Migrate the django test database
./manage.py migrate

# Run the test server
./manage.py runserver
```