https://github.com/suchow/search-engine
Skeleton for a search engine web application
https://github.com/suchow/search-engine
Last synced: over 1 year ago
JSON representation
Skeleton for a search engine web application
- Host: GitHub
- URL: https://github.com/suchow/search-engine
- Owner: suchow
- License: mit
- Created: 2019-10-28T19:21:42.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-05-01T21:17:08.000Z (about 3 years ago)
- Last Synced: 2025-01-16T00:53:44.665Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 11.2 MB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
To run, first install [Flask](https://flask.palletsprojects.com/en/1.1.x/):
```
pip install flask
```
Next, set the following environment variable:
```
export FLASK_ENV=development
```
Finally, run flask:
```
flask run
```
Visit the URL that is printed in the output to test your app.
To deploy your app, you might consider using [Heroku](https://bia-660-search-demo.herokuapp.com). Once you've created an account, download and install the [Heroku CLI](https://devcenter.heroku.com/articles/heroku-cli). Log in using `heroku login`.
Next, create a new app on Heroku:
```
heroku create
```
Finally, deploy your app:
```
git push heroku master
```