
Done so far Basic backend skeleton - technology choices - database migration outline - basic self hosting facade - basic REST outline - proof of concept for auth and privileges Basic frontend skeleton - technology choices - pretty robust frontend compilation - top navigation - proof of concept for registration form
3 lines
107 B
Python
3 lines
107 B
Python
from sqlalchemy.ext.declarative import declarative_base
|
|
Base = declarative_base() # pylint: disable=C0103
|