forked from appwrite/demo-todo-with-react
-
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.
Merge pull request appwrite#31 from Yash-Singh1/deployToHeroku
Deploy to Heroku Button
- Loading branch information
Showing
2 changed files
with
26 additions
and
0 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
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,24 @@ | ||
{ | ||
"env": { | ||
"REACT_APP_ENDPOINT": { | ||
"description": "Your Appwrite endpoint", | ||
"value": "APP_ENDPOINT", | ||
"required": true | ||
}, | ||
"REACT_APP_PROJECT": { | ||
"description": "Your Appwrite project ID", | ||
"value": "APP_PROJECT_ID", | ||
"required": true | ||
}, | ||
"REACT_APP_COLLECTION_ID": { | ||
"description": "Your Appwrite collection ID", | ||
"value": "COLLECTION_ID", | ||
"required": true | ||
} | ||
}, | ||
"buildpacks": [ | ||
{ | ||
"url": "https://github.com/mars/create-react-app-buildpack" | ||
} | ||
] | ||
} |