-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Flask Server Integration for Nomic Game #9
Flask Server Integration for Nomic Game #9
Conversation
README.md
Outdated
# stf-nomic-game | ||
## Setting Up a Python Virtual Environment |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The environment instructions below are incorrect as we're using poetry so we should change accordingly
README.md
Outdated
``` | ||
|
||
## Integration of Nomic Game Logic into Flask App |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These plans are pretty good. I'm not sure if they below in the readme though, maybe we should copy them and place them into the next ticket - #10
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I ended up copying these instructions into the ticket so we can just remove these
requirements.txt
Outdated
@@ -0,0 +1 @@ | |||
Flask==2.0.1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure if Poetry uses a requirements file so we should delete this one and replace with whatever poetry uses
README.md
for setting up a Python virtual environment.requirements.txt
to manage project dependencies, including Flask version 2.0.1.app/__init__.py
with debug mode enabled.app/routes.py
.README.md
with instructions for running the Flask server locally and outlined a plan for future Nomic game logic integration.