Skip to content

Latest commit

 

History

History
57 lines (37 loc) · 1.39 KB

README.md

File metadata and controls

57 lines (37 loc) · 1.39 KB

OK Boomer (Twitter clone)

This is a simple Twitter clone app named OK Boomer, built with Stream's API.

Tutorial

This application is based on the Build a scalable Twitter clone with Django and GetStream.io tutorial.

Heroku

The best way to try this application is via Heroku; you can deploy this example (for free) on Heroku by pressing the Deploy button below.

Deploy

If you prefer to run this locally then make sure to signup for GetStream's service and follow this steps:

Install the requirements

pip install -r requirements.txt

Add your API keys to pytutorial/settings.py

STREAM_API_KEY = 'my_api_key'
STREAM_API_SECRET = 'my_api_secret'

Run server in debug mode pytutorial/settings.py

DEBUG = True

Setup your database and the demo data:

python manage.py after_deploy

Collect static files (javascript/css)

python manage.py collectstatic

Start the webserver

python manage.py runserver

Copyright and License Information

Copyright (c) 2015-2017 Stream.io Inc, and individual contributors. All rights reserved.

See the file "LICENSE" for information on the history of this software, terms & conditions for usage, and a DISCLAIMER OF ALL WARRANTIES.