-
Notifications
You must be signed in to change notification settings - Fork 257
/
app.json
39 lines (39 loc) · 954 Bytes
/
app.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "PropertyWebBuilder for Heroku",
"description": "An instant website for real estate agencies.",
"keywords": [
"realtor",
"property management",
"cms",
"rails",
"proptech",
"opensource"
],
"website": "http://propertywebbuilder.com/",
"repository": "https://github.com/etewiah/property_web_builder",
"scripts": {
"postdeploy": "bundle exec rake db:migrate pwb:db:seed"
},
"addons": [
"heroku-postgresql:hobby-dev",
"cloudinary:starter"
],
"env": {
"GMAPS_API_KEY": "enter_google_maps_api_key_here",
"LANG": "en_US.UTF-8",
"RACK_ENV": "production",
"RAILS_ENV": "production",
"RAILS_LOG_TO_STDOUT": "enabled",
"RAILS_SERVE_STATIC_FILES": "enabled",
"VITE_RUBY_SKIP_ASSETS_PRECOMPILE_EXTENSION": "true",
"VITE_RUBY_SKIP_COMPATIBILITY_CHECK": "true"
},
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "heroku/ruby"
}
]
}