Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
elp
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
崔为之
elp
Commits
beb4afc8
Commit
beb4afc8
authored
Nov 21, 2023
by
崔为之
💪🏽
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update project
parent
7cfb16a4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
app.py
app.py
+2
-4
No files found.
app.py
View file @
beb4afc8
...
@@ -34,13 +34,11 @@ def runserver():
...
@@ -34,13 +34,11 @@ def runserver():
# The 'Server' key is assumed to be a dictionary containing the keys 'IP' and 'Port'.
# The 'Server' key is assumed to be a dictionary containing the keys 'IP' and 'Port'.
cfg
=
app
.
config
[
'Server'
]
cfg
=
app
.
config
[
'Server'
]
# Retrieve the host and port from the config.
# Retrieve the port from the config.
# If they're not present, default to '0.0.0.0' for the host and '5000' for the port.
host
=
cfg
.
get
(
'IP'
,
'0.0.0.0'
)
port
=
cfg
.
get
(
'Port'
,
5000
)
port
=
cfg
.
get
(
'Port'
,
5000
)
# Run the Flask development server.
# Run the Flask development server.
app
.
run
(
host
=
host
,
port
=
port
,
use_reloader
=
False
)
app
.
run
(
host
=
'0.0.0.0'
,
port
=
port
,
use_reloader
=
False
)
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment