forked from calcom/cal.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: deployment setup to Heroku (calcom#1834)
* fix: move app.json to root directory * fix: add heroku-postbuild script * chore: add description to env variables on app.json * fix: update postdeploy script on app.json * fix: add Procfile to override start script Co-authored-by: Peer Richelsen <[email protected]>
- Loading branch information
1 parent
b7ad073
commit 691235f
Showing
5 changed files
with
29 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
web: npx turbo run @calcom/web#start |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"name": "Cal.com", | ||
"description": "Open Source Scheduling", | ||
"repository": "https://github.com/calcom/cal.com", | ||
"logo": "https://cal.com/android-chrome-512x512.png", | ||
"keywords": ["react", "typescript", "node", "nextjs", "prisma", "postgres", "trpc"], | ||
"addons": [ | ||
{ | ||
"plan": "heroku-postgresql:hobby-dev" | ||
} | ||
], | ||
"env": { | ||
"BASE_URL": { | ||
"description": "Replace HEROKU_APP_NAME with the name given to your app", | ||
"value": "https://HEROKU_APP_NAME.herokuapp.com" | ||
}, | ||
"CALENDSO_ENCRYPTION_KEY": { | ||
"description": "Application Key for symmetric encryption and decryption. Must be 32 bytes for AES256 encryption algorithm.", | ||
"value": "secret" | ||
}, | ||
"JWT_SECRET": "secret" | ||
}, | ||
"scripts": { | ||
"postdeploy": "cd apps/web && npx prisma migrate deploy" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters