Files @ 8e59d3d66159
Branch filter:

Location: NPO-Accounting/experimental-accounting-api/bin/serve

Joar Wandborg
[sql] Late init_app of SQLAlchemy

in order to be able to run sql/models.py alone (e.g. sphinx autodoc)
1
2
3
4
5
6
7
8
9
#! /usr/bin/env python3
import sys

sys.path.append('./')

from accounting.web import main

if __name__ == '__main__':
    sys.exit(main())