mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-27 13:34:28 +00:00
Stefano Pigozzi
c64f528ecf
* start work on wiki * more progress * wikiprogress, but not yet * Complete wikiview * Get rid of required tables * Restructure the db
14 lines
229 B
Python
14 lines
229 B
Python
import os
|
|
from .web import create_app
|
|
from .web.blueprints import home, wikiview
|
|
|
|
|
|
class TestConfig:
|
|
DB_PATH = os.environ["DB_PATH"]
|
|
|
|
|
|
app = create_app(TestConfig, [home, wikiview])
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app.run()
|