Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/keller-mark/compsci279r-hw5
https://github.com/keller-mark/compsci279r-hw5
Last synced: 12 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/keller-mark/compsci279r-hw5
- Owner: keller-mark
- Created: 2022-10-03T20:38:56.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-06T18:26:05.000Z (over 2 years ago)
- Last Synced: 2024-11-13T06:21:38.170Z (2 months ago)
- Language: HTML
- Homepage: https://radiant-scrubland-87346.herokuapp.com/
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# compsci279r-hw5
## How to access hosted version
Navigate to
https://radiant-scrubland-87346.herokuapp.com/ in a web browser.## How to setup development environment
```sh
conda env create -f environment.yml
```## How to run locally
```sh
conda activate compsci279r-hw5
python app.py
```Open http://localhost:5000
## How to deploy to heroku
```sh
heroku login
heroku create
git push heroku main
heroku ps:scale web=1
heroku open
```## Resources
To create this todo list, I used the tutorial at https://www.python-engineer.com/posts/flask-todo-app/
I also used:
- https://github.com/heroku/python-getting-started
- https://devcenter.heroku.com/articles/getting-started-with-python#deploy-the-app