Skip to content

Commit

Permalink
DashTools Automatic Push - 08/22/2023 @ 17:26:11
Browse files Browse the repository at this point in the history
  • Loading branch information
memgonzales committed Aug 22, 2023
1 parent 2f80752 commit 8697212
Show file tree
Hide file tree
Showing 24 changed files with 15 additions and 1 deletion.
13 changes: 13 additions & 0 deletions render.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
services:
# See https://render.com/docs/blueprint-spec for more info on render blueprints
- type: web
name: FilWordNet
env: python
plan: free
# A requirements.txt file must exist
buildCommand: pip install -r requirements.txt
# A src/app.py file must exist and contain `server=app.server`
startCommand: gunicorn --chdir src app:server
envVars:
- key: PYTHON_VERSION
value: 3.10.0
3 changes: 2 additions & 1 deletion app.py → src/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
external_stylesheets=[dbc.themes.BOOTSTRAP,
dbc.icons.BOOTSTRAP, dbc.icons.FONT_AWESOME],
server=server)
server = app.server

navbar = dbc.NavbarSimple(
children=[
Expand Down Expand Up @@ -71,4 +72,4 @@
callbacks.home.scroll_callbacks.init_callback(app)

if __name__ == '__main__':
app.run_server(host='0.0.0.0', port='8050', debug=True)
app.run_server(port='8049', debug=True)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes

0 comments on commit 8697212

Please sign in to comment.