Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 13 days 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 (almost 10 years ago)
- Last Synced: 2023-03-24T07:28:22.932Z (almost 2 years ago)
- Language: HTML
- Size: 133 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
SockJS-Cyclone deployment on Heroku Quickstart
==============================================[![Deploy](https://www.herokucdn.com/deploy/button.svg)](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!