Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/robbestad/heroku-apigility
Heroku buildpack for hosting Apigility APIs
https://github.com/robbestad/heroku-apigility
Last synced: 20 days ago
JSON representation
Heroku buildpack for hosting Apigility APIs
- Host: GitHub
- URL: https://github.com/robbestad/heroku-apigility
- Owner: robbestad
- Created: 2014-03-18T11:24:08.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-11-03T17:38:00.000Z (about 9 years ago)
- Last Synced: 2024-04-13T17:10:58.469Z (8 months ago)
- Language: Puppet
- Size: 995 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Apigility ZF2 for Heroku
Apigility skeleton application for Heroku.
![Apigility](http://quiet-garden-8853.herokuapp.com/zf-apigility-welcome/img/ag-hero.png)
## Examples
Example base deploy: [Apigility Heroku](http://quiet-garden-8853.herokuapp.com/apigility/welcome)
Example real world use: UV API running on Heroku
curl -i -H "Accept: application/json" -H "Content-Type: application/json" "http://uvapi.herokuapp.com/forecast/longitude=10,77&latitude=59,94"
### Requirements
* Heroku account
### Installation
> $ heroku create
> $ git push heroku master
> $ heroku open
### For using with latest version of Apigility
> $ git clone https://github.com/zfcampus/zf-apigility-skeleton.git
> $ cd zf-apigility-skeleton
> $ heroku create
> $ heroku config:set BUILDPACK_URL=https://github.com/svenanders/heroku-apigility.git
> $ heroku config:set WWWROOT=/public
> $ echo "web: vendor/bin/heroku-php-apache2 public/" >> Procfile
> $ composer install
> $ git commit -am"Initial commit"
> $ git push heroku master
> $ heroku open