-
Notifications
You must be signed in to change notification settings - Fork 23
Project Overview April 21 2020
Emerson Castaneda edited this page Sep 22, 2020
·
1 revision
housinghub
├───.github
│ └───workflows
├───backend
│ ├───alembic
│ │ └───versions
│ ├───docs
│ ├───src
│ │ ├───app
│ │ │ └───templates
│ │ ├───models
│ │ ├───services
│ │ └───test
│ └───venv
│ ├───Include
│ ├───Lib
│ │ ├───site-packages
│ └───Scripts
└───frontend
├───public
└───src
├───actions
├───api
├───components
├───containers
├───reducers
└───style
usage example:
$ cd backend/alembic
$ alembic revision -m ‘create foo table’
Generating /../../..//../.../versions/8238971238712_create_foo_table.py ...done `

flask -> Blueprint






Services for modularizing common functionality like data base interaction, authentication, container, etc :



A classic react application with: components and containers (html and js), store (reducers), api (communication with the backend), and style (css)




