Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
evm-store
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wanli
evm-store
Commits
bbca5371
Commit
bbca5371
authored
Jun 29, 2021
by
wanliofficial
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
0ab79981
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
33883 deletions
+14
-33883
backend/backupData.json
backend/backupData.json
+1
-1
backend/config.ini
backend/config.ini
+1
-1
backend/runoob.log
backend/runoob.log
+9
-33878
backend/start.py
backend/start.py
+3
-3
No files found.
backend/backupData.json
View file @
bbca5371
{
"lastModifyDateTime"
:
1624969659
}
\ No newline at end of file
{
"lastModifyDateTime"
:
1624973031
}
\ No newline at end of file
backend/config.ini
View file @
bbca5371
...
...
@@ -20,5 +20,5 @@ name = evm_store
backup_dir
=
backup
evueapps_dir
=
evueapps
launcher_dir
=
launcher
host
=
127.0.0.1
host
=
0.0.0.0
port
=
3000
backend/runoob.log
View file @
bbca5371
This diff is collapsed.
Click to expand it.
backend/start.py
View file @
bbca5371
...
...
@@ -48,16 +48,16 @@ def start():
(
r'/'
,
VueHandler
),
(
r'/index'
,
VueHandler
),
(
r"/api/v1/evm_store/monitor"
,
DeviceMessageHandler
),
(
r
'/ws/v1/notify'
,
NotifyHandler
),
(
r
"/ws/v1/notify"
,
NotifyHandler
),
(
r'.*'
,
FallbackHandler
,
dict
(
fallback
=
wsgi_app
))
],
**
settings
)
if
len
(
sys
.
argv
)
==
2
:
port
=
int
(
sys
.
argv
[
1
])
application
.
listen
(
port
,
address
=
config
[
'HOST'
])
application
.
listen
(
port
,
address
=
config
[
'HOST'
]
,
xheaders
=
True
)
else
:
port
=
config
[
'PORT'
]
application
.
listen
(
port
,
address
=
config
[
'HOST'
])
application
.
listen
(
port
,
address
=
config
[
'HOST'
]
,
xheaders
=
True
)
print
(
config
[
'LOGO'
])
print
(
"server running at
%
s:
%
d"
%
(
config
[
'HOST'
],
port
))
...
...
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