Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cmeiklejohn/herloku
Erlang application with webmachine on heroku.
https://github.com/cmeiklejohn/herloku
Last synced: about 2 months ago
JSON representation
Erlang application with webmachine on heroku.
- Host: GitHub
- URL: https://github.com/cmeiklejohn/herloku
- Owner: cmeiklejohn
- Created: 2012-06-17T15:50:29.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-06-17T18:22:07.000Z (over 12 years ago)
- Last Synced: 2024-10-26T08:59:10.283Z (2 months ago)
- Language: Erlang
- Homepage: http://herloku.herokuapp.com/
- Size: 224 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
Project Skeleton for the herloku app.
You should find in this directory:
README : this file
Makefile : simple make commands
rebar : the Rebar build tool for Erlang applications
rebar.config : configuration for Rebar
start.sh : simple startup script for running herloku
/ebin
/herloku.app : the Erlang app specification
/src
/herloku_app.erl : base module for the Erlang application
/herloku_sup.erl : OTP supervisor for the application
/herloku_resource.erl : a simple example Webmachine resource
/priv
/dispatch.conf : the Webmachine URL-dispatching table
/www : a convenient place to put your static web contentYou probably want to do one of a couple of things at this point:
0. Build the skeleton application:
$ make
- or -
$ ./rebar compile1. Start up the skeleton application:
$ ./start.sh2. Change the basic application:
edit src/herloku_resource.erl3. Add some new resources:
edit src/YOUR_NEW_RESOURCE.erl
edit priv/dispatch.conf