Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Sergidev
/
GrimvAult1
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
f2b10e6
GrimvAult1
/
app.py
Sergidev
Update app.py
696a89e
verified
12 months ago
raw
Copy download link
history
blame
Safe
243 Bytes
from
app
import
create_app, db
from
app.models
import
User, File
app = create_app()
@app.shell_context_processor
def
make_shell_context
():
return
{
'db'
: db,
'User'
: User,
'File'
: File}
if
__name__ ==
'__main__'
:
app.run(debug=
False
)