Closed tompollard closed 4 days ago
This pull request adds a command line tool called startproject:
startproject
omopetl startproject <PROJECTNAME>
Running the command installs the following scaffold files at <PROJECTNAME>:
<PROJECTNAME>
templates ├── README.md ├── data ├── etl_config.yaml ├── mappings.yaml ├── requirements.txt ├── scripts │ ├── extract.py │ ├── load.py │ └── transform.py ├── tests │ ├── test_extract.py │ ├── test_load.py │ └── test_transform.py └── validation.yaml
This pull request adds a command line tool called
startproject
:Running the command installs the following scaffold files at
<PROJECTNAME>
: