https://binnenland.atlassian.net/browse/DL-3488
https://dev.loket.lblod.info/mock-login (needs to be deployed, target friday)
| from sqlalchemy import Integer, ForeignKey, String, Column, create_engine | |
| from sqlalchemy.ext.declarative import declarative_base | |
| from sqlalchemy.orm import relationship, Session | |
| from sqlalchemy import event | |
| Base = declarative_base() | |
| class User(Base): | |
| __tablename__ = 'user' |
| # from sqlalchemy import Integer, ForeignKey, String, Column, create_engine | |
| # from sqlalchemy.ext.declarative import declarative_base | |
| from sqlalchemy.orm import relationship, Session | |
| from sqlalchemy import event | |
| from sqlalchemy import * | |
| from sqlalchemy.ext.declarative import declarative_base | |
| from sqlalchemy.orm import scoped_session, sessionmaker, relation | |
| from zope.sqlalchemy import ZopeTransactionExtension, register | |
| import transaction |
https://binnenland.atlassian.net/browse/DL-3488
https://dev.loket.lblod.info/mock-login (needs to be deployed, target friday)
The vision is (in Dutch, unfortunately) well summarised in https://lokaalbestuur.vlaanderen.be/gelinkt-publiceren-en-melden, the video. Also some information here: https://www.vlaanderen.be/agentschap-binnenlands-bestuur/blikvangers/lokale-besluiten-als-gelinkte-open-data These were the initial seeds; the project has grown in scope. Even though some of the initial goals still need realisation.
Development here is heavily data-driven. Data sharing between applications only work if data model is shared Hence the importance of data models.