This commit is contained in:
Tommy Parnell
2022-04-07 10:01:20 -04:00
commit 6781fd5fdb
21 changed files with 17230 additions and 0 deletions

28
app.json Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "Remix on heroku",
"description": "A sample app showing remix on heroku with postgres",
"keywords": [
"react",
"remix",
"postgres"
],
"website": "https://github.com/TerribleDev/remix-heroku",
"repository": "https://github.com/TerribleDev/remix-heroku.git",
"success_url": "/",
"scripts": {},
"formation": {
"web": {
"quantity": 1,
"size": "hobby"
}
},
"addons": [
"heroku-postgresql"
],
"buildpacks": [
{
"url": "heroku/nodejs"
}
]
}