Skip to content

Commit

Permalink
rename to main.py
Browse files Browse the repository at this point in the history
  • Loading branch information
haochenpan committed May 29, 2024
1 parent a4cf839 commit 9a8e735
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ COPY pyproject.toml .

RUN pip install .

CMD [ "python", "app/app.py" ]
CMD [ "python", "app/main.py" ]
2 changes: 1 addition & 1 deletion app/app.py → app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

@app.route('/')
def hello_world():
return "Hello, World! 123"
return "Hello, World from Diaspora Service"

if __name__ == "__main__":
app.run(host='0.0.0.0', port=8000)

0 comments on commit 9a8e735

Please sign in to comment.