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
c8ec8ab5
Commit
c8ec8ab5
authored
Mar 14, 2021
by
wanliofficial
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updateu
parent
1b0be981
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
22 additions
and
5 deletions
+22
-5
.gitignore
.gitignore
+1
-0
backend/app/setting.py
backend/app/setting.py
+2
-2
backend/config.ini
backend/config.ini
+3
-3
backend/requirements.txt
backend/requirements.txt
+16
-0
No files found.
.gitignore
View file @
c8ec8ab5
...
...
@@ -25,6 +25,7 @@
debug
deploy/
build/
venv/
logs/*.log
logs/*.log.*
...
...
backend/app/setting.py
View file @
c8ec8ab5
...
...
@@ -11,18 +11,18 @@ config = dict(
NAME
=
'evm_store'
,
DEBUG
=
True
,
HOST
=
"0.0.0.0"
,
PORT
=
9999
,
PORT
=
5000
,
SECRET_KEY
=
'secret_key_EhuqUkwV'
,
LOGIN_DISABLED
=
False
,
BACKUP_DIR
=
conf
.
get
(
'application'
,
'backup_dir'
),
NETDISC
=
conf
.
get
(
'uploads'
,
'netdisc'
),
DATABASE
=
conf
.
get
(
'database'
,
'filename'
),
DATABASE_FILE
=
conf
.
get
(
'scheduler'
,
'db'
),
PONY
=
{
'provider'
:
conf
.
get
(
'database'
,
'provider'
),
'filename'
:
"../{}"
.
format
(
conf
.
get
(
'database'
,
'filename'
)),
'create_db'
:
True
,
},
DATABASE_FILE
=
conf
.
get
(
'scheduler'
,
'db'
),
TABLE_PREFIX
=
'evm_store_'
,
MD5_SALT
=
"EhuqUkwV"
,
UPLOAD_SERVER
=
"{}://{}:{}/"
.
format
(
conf
.
get
(
'uploads'
,
'protocol'
),
conf
.
get
(
'uploads'
,
'host'
),
conf
.
get
(
'uploads'
,
'port'
)),
...
...
backend/config.ini
View file @
c8ec8ab5
[uploads]
port
=
8
888
host
=
localhost
port
=
8
0
host
=
store.evmiot.com
protocol
=
http
upload_path
=
F:
\W
anli
\p
rojects
\e
vm-store
\b
ackend
upload_path
=
/www/wwwroot/store.evmiot.com
upload_dir
=
uploads
netdisc
=
netdisc
...
...
backend/requirements.txt
0 → 100644
View file @
c8ec8ab5
appdirs==1.4.4
click==7.1.2
Flask==1.1.2
Flask-Cors==3.0.10
Flask-Login==0.5.0
fs==2.4.12
itsdangerous==1.1.0
Jinja2==2.11.3
MarkupSafe==1.1.1
marshmallow==3.10.0
pony==0.7.14
PyJWT==2.0.1
pytz==2021.1
six==1.15.0
tornado==6.1
Werkzeug==1.0.1
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