Getting started
Installation
Prepare a test environment:
mkdir crudcreator_test cd crudcreator_test python -m venv env ./env/bin/activate
Then install crudcreator with pip :
pip install crudcreator
Skeleton creation
CRUDCreator publishes a command to create the files required for startup. In the python environment where crudcreator is installed, run the following command :
crudcreator init simple
Then :
pip install -r requirements.txt
You’ll then see a set of files and folders. The example “First simple example” details the files created.