tps/plan/workflow.md

54 lines
4.5 KiB
Markdown
Raw Normal View History

2018-06-25 00:37:05 -04:00
2018-06-25 18:14:49 -04:00
## workflow overview
* initial setup
1. create a source
2. run import
3. setup regex
4. map all regex
* on-going usage
1. run import
2. address any new unmapped items
## source maintenance
2018-06-25 00:37:05 -04:00
```
source maintenance
+----------------------------------------------------------------------------------------------------------------+
| +-------------+ |
| |MAKE NEW | |
| +-------------+ |
| |
| existing sources source name |
| +-------------+ +---------------+ |
2018-06-25 18:14:49 -04:00
| |dcard | |tb:dcard | |
2018-06-25 00:37:05 -04:00
| |hunt | +---------------+ |
| |pncc | data source |
| |paycom | +---------------+ |
| |adp | |client file | |
| | | +---------------+ |
| | | loading function |
| | | +---------------+ |
| | | |csv parser | |
| | | +---------------+ |
| | | schema |
| | | +----------------+ +------------+ |
| | | |default | |b: add new | |
| | | +----------------+ +------------+ |
| | | +-------------------------------------------------------------+ |
| | | |path |data type |column name |constrain| |
| | | +-------------------------------------------------------------+ |
| | | |{Post. Date} |date |post_date |X | |
| | | |{Amount} |numeric |amount |X | |
| | | |{Trans. Date} |date |trans_date |X | |
| | | |{Category} |text |category | | |
| | | |{Description} |text |descr | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| +-------------+ +-------------------------------------------------------------+ |
+----------------------------------------------------------------------------------------------------------------+
2018-06-25 18:14:49 -04:00
```