Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 33 additions & 1 deletion scalingo.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,37 @@
"description": "Sample Ruby web application using the Rails framework",
"logo": "https://scalingo.com/logo.svg",
"repository": "https://github.com/Scalingo/sample-ruby-rails",
"website": "https://ruby-rails.is-easy-on-scalingo.com/"
"website": "https://ruby-rails.is-easy-on-scalingo.com/",
"copy_parent_database_urls": true,
"env": {
"VAR_TEST_1": {
"description": "test variable number 1",
"value": "1"
},
"VAR_SECRET_1": {
"description": "generated variable 1",
"generator": "secret"
},
"PUBLIC_URL": {
"description": "URL of the application",
"generator": "url"
},
"ADMIN_URL": {
"description": "Admin URL of the application",
"generator": "url",
"template": "%URL%/admin"
}
},
"addons": [
{
"plan": "mongodb:mongo-starter-256",
"options": {
"version": "4.0.16-1"
}
}
],
"scripts": {
"first-deploy": "echo 'first deployment'",
"postdeploy": "echo hello"
}
}