-
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 branch 'main' of https://github.com/gachouchani1999/hackricepro…
…ject into main
- Loading branch information
Showing
1 changed file
with
13 additions
and
8 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 |
---|---|---|
@@ -1,13 +1,18 @@ | ||
# EZ PowerPoint | ||
|
||
EZPPT runs Natural Language Processing algorithms that is able to analyze a DOCX document and return a powerpoint file with the most important points summarized into a neat powerpoint template that is ready to use with only a few tweaks from the user. | ||
|
||
Visit the project on [devpost](https://devpost.com/software/ez-powerpoint) to see details on our inspiration and plans. | ||
|
||
## Local Instructions | ||
1. `python3 -m venv venv` | ||
1. `source venv/bin/activate` | ||
1. `pip install -r requirements.txt` | ||
1. restart so bootstrap-flask loads | ||
|
||
1. `export FLASK_APP=flaskr` | ||
1. `export FLASK_ENV=development` | ||
1. `flask run` | ||
## Local Development Instructions | ||
|
||
1. Clone the project | ||
2. CD to root directory | ||
3. Run `python3 -m venv venv` to create a new virtual env | ||
4. Run `source venv/bin/activate` to start the virtual env | ||
5. Run `pip install -r requirements.txt` to install project dependencies | ||
6. Run `deactivate` and `source venv/bin/activate` to restart the virtual env to load bootstrap-flask (the package has a bug) | ||
1. Run `export FLASK_APP=flaskr` and `export FLASK_ENV=development` to set env variables | ||
1. Run `flask run` to start the server | ||
2. Navigate to http://127.0.0.1:5000/ to see the product! |