https://github.com/groonga/heroku-buildpack-groonga
Heroku buildpack for Groonga.
https://github.com/groonga/heroku-buildpack-groonga
Last synced: 8 months ago
JSON representation
Heroku buildpack for Groonga.
- Host: GitHub
- URL: https://github.com/groonga/heroku-buildpack-groonga
- Owner: groonga
- License: mit
- Created: 2012-11-28T02:11:06.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2016-11-06T07:23:21.000Z (over 9 years ago)
- Last Synced: 2025-03-24T02:51:29.307Z (about 1 year ago)
- Language: Ruby
- Homepage:
- Size: 48.8 KB
- Stars: 5
- Watchers: 21
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Heroku buildpack: Groonga
This is a Heroku buildpack of [Groonga](http://groonga.org/).
## Usage:
heroku create --buildpack https://codon-buildpacks.s3.amazonaws.com/buildpacks/groonga/groonga.tgz
Create `groonga` directory on the root of your project and place `*.grn` files in the directory.
`*.grn` files will be loaded in the dictionary order of their file names.
mkdir -p groonga
vi groonga/0-schema.grn
vi groonga/1-data.grn
vi groonga/9-indexes.grn
Then push them to Heroku.
git push heroku master
## Environment variables
You can use the following environment variables:
* `GROONGA_BASE_PATH`: The directory path to be placed Groogna
related files such as database. You can use the directory to put
Groonga related files.
* `GROONGA_DATABASE_PATH`: The Groonga database path for your
application. The path exists under `GROONGA_BASE_PATH` directory.