-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add .env.example and update configuration for Flask and Gemini
- Loading branch information
1 parent
03ba0a2
commit a723452
Showing
7 changed files
with
28 additions
and
18 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Flask Configuration | ||
FLASK_APP=server/app.py | ||
FLASK_ENV=development | ||
FLASK_DEBUG=1 | ||
FLASK_RUN_HOST=0.0.0.0 | ||
FLASK_RUN_PORT=5000 | ||
FLASK_SECRET_KEY=your-secret-key | ||
|
||
# Gemini Configuration | ||
GEMINI_KEY=your-gemini-key |
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,10 @@ | ||
services: | ||
app: | ||
container_name: mivro_container | ||
build: . | ||
env_file: .env | ||
command: python -m flask run | ||
ports: | ||
- "5000:5000" | ||
volumes: | ||
- ".:/mivro-python" |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
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