Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Chris
Pixelframe
Commits
b79ea834
Commit
b79ea834
authored
Dec 22, 2020
by
Christian Wander
Browse files
adding the app directory
parent
329c66c6
Changes
2
Hide whitespace changes
Inline
Side-by-side
pixelframe/__init__.py
0 → 100644
View file @
b79ea834
import
os
from
flask
import
Flask
def
create_app
(
test_config
=
None
):
## create and configure the app
app
=
Flask
(
__name__
,
instance_relative_config
=
True
)
app
.
config
.
from_mapping
(
SECRET_KEY
=
'dev'
,
DATABASE
=
os
.
path
.
join
(
app
.
instance_path
,
'app.sqlite'
)
)
if
test_config
is
None
:
# load the instance config, if it exists, when not testing
app
.
config
.
from_pyfile
(
'config.py'
,
silent
=
True
)
else
:
# load the test config if passed in
app
.
config
.
from_mapping
(
test_config
)
# ensure the instance folder exists
try
:
os
.
makedirs
(
app
.
instance_path
)
except
OSError
:
pass
# :D :-D :-D
## So it would be nice if the controllers could sit somewhere else :-D
@
app
.
route
(
'/'
)
def
hello
():
return
'main page'
return
app
\ No newline at end of file
templates/hello.html
→
pixelframe/
templates/hello.html
View file @
b79ea834
File moved
Write
Preview
Supports
Markdown
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