https://github.com/flaviogrossi/sockjs-cyclone_heroku_quickstart
Quickstart code for deploying a SockJS-Cyclone app on Heroku
https://github.com/flaviogrossi/sockjs-cyclone_heroku_quickstart
Last synced: 4 months ago
JSON representation
Quickstart code for deploying a SockJS-Cyclone app on Heroku
- Host: GitHub
- URL: https://github.com/flaviogrossi/sockjs-cyclone_heroku_quickstart
- Owner: flaviogrossi
- Created: 2013-11-03T10:17:03.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-03-06T13:18:27.000Z (over 10 years ago)
- Last Synced: 2025-01-23T15:55:55.710Z (5 months ago)
- Language: HTML
- Size: 133 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
SockJS-Cyclone deployment on Heroku Quickstart
==============================================[](https://heroku.com/deploy)
Click on the button above for one-click heroku deploy, or just follow the detailed instructions below.
Install `mkvirtualenvwrapper`, `git` and the `heroku toolbelt` using your distribution package manager.
Clone this repository:
```
git clone https://github.com/flaviogrossi/sockjs-cyclone_heroku_quickstart.git
```Create your python virtualenv for local use:
```
mkvirtualenv sockjs_heroku_app
```Install the required dependencies in your virtualenv:
```
pip install -r requirements.txt
```Login with your Heroku account:
```
heroku login
```Test your app locally:
```
foreman start
```Create your Heroku app:
```
heroku create
```Push your code to Heroku:
```
git push heroku master
```Optionally, enable experimental [Heroku support for websockets](https://blog.heroku.com/archives/2013/10/8/websockets-public-beta):
```
heroku labs:enable websockets
```Enjoy your newly deployed SockJs-Cyclone Heroku app!