Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
7d33649
add a folder to keep all the hackathon projects
sahilx13 Oct 24, 2024
4c316aa
Merge branch 'UMass-Rescue:master' into master
sahilx13 Oct 25, 2024
7fcb74c
Update README.md
atharvakale343 Oct 25, 2024
f81236f
Update README.md
atharvakale343 Oct 25, 2024
e482e32
Merge pull request #1 from atharvakale343/patch-1
sahilx13 Oct 25, 2024
1cca495
add sample project
atharvakale343 Oct 25, 2024
08d6b0f
Merge branch 'UMass-Rescue:master' into akale-add-sample-project
atharvakale343 Oct 25, 2024
973c3e1
Merge branch 'master' into akale-add-sample-project
atharvakale343 Oct 25, 2024
3217f47
update readme
atharvakale343 Oct 25, 2024
1660e35
Merge branch 'akale-add-sample-project' of https://github.com/atharva…
atharvakale343 Oct 25, 2024
acec83b
update readme
atharvakale343 Oct 25, 2024
f71684a
ffmpeg
atharvakale343 Oct 25, 2024
400c54d
readme
atharvakale343 Oct 25, 2024
ba60319
add sample task
atharvakale343 Oct 25, 2024
d5a149e
Merge pull request #2 from atharvakale343/akale-add-sample-project
sahilx13 Oct 25, 2024
0ceee4c
Fix typos
jtquach1 Oct 25, 2024
a0bbb89
Merge branch 'UMass-Rescue:master' into master
sahilx13 Oct 25, 2024
a738b6a
Merge pull request #3 from jtquach1/fix-typos
sahilx13 Oct 25, 2024
22194fd
Create app.yaml
sahilx13 Oct 25, 2024
5805637
Update app.yaml
sahilx13 Oct 25, 2024
114de61
Update app.yaml
sahilx13 Oct 25, 2024
bc96ffe
Create audio_transcription_ollama folder
01cshi Oct 25, 2024
ad860e1
Add files via upload
01cshi Oct 25, 2024
2786666
Update README
01cshi Oct 25, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix typos
  • Loading branch information
jtquach1 committed Oct 25, 2024
commit 0ceee4c41dd6345dfeed129a24471fa81b706894
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ When you're done, submit a PR back to this repository, so we can have everyone's
python -m venv env
```

This uses `venv` to create a new virutal envrionment for you.
This uses `venv` to create a new virtual environment for you.

### Activate the virtual envrionment
### Activate the virtual environment

```bash
source env/bin/activate
Expand Down
2 changes: 1 addition & 1 deletion deployment_instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ In our example, we will use [gunicorn](https://gunicorn.org/). To install gunico
pip install gunicorn
```

Even with gunicorn, we need to specify which variable in our file contains the Flask application instance. Firtly, we need to make the same changes to the code as we did for "flask run" command -
Even with gunicorn, we need to specify which variable in our file contains the Flask application instance. Firstly, we need to make the same changes to the code as we did for "flask run" command -

```
# begin server instance
Expand Down