2.0.6 • Published 3 years ago

@desenroladev/cli v2.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

DDEV CLI

npm.io

npm.io npm.io npm.io

Setup

Installing ddev

$ npm i -g @desenroladev/cli or $ yarn global add @desenroladev/cli

Creating a new project

Creating a new project is quite simple with the DDEV. you can create a new DDEV project with the following commands in your OS terminal:

$ ddev new project_name

Setting up .env

For your DDEV project to work correctly you must configure the application .env as follows:

DB_HOST=my_host
DB_PORT=my_port
DB_DATABASE=my_database
DB_PASSWORD=my_password
DB_USER=my_username

Avaliable commands

Creating a DML

$ ddev dml table_name

Creating a standard DML framework facilitates and standardizes the development process for any application, so much of the CRUD work will be abstracted.

Available instructions
InstructionFunctionality
-s or --schema <schema_name>Specifies the schema
-f or --folder Specifies the folder where scripts will be generated.
-p or --pk_name <pk_name>Specifies Primary Key name
-t or --pk_type <pk_type>Specifies Primary Key type
-d or --deployDeploy DML
-w or --with-delete-softwareWith Software Delete or Not
-e or --enviroment Inform the path of the .env

Example

Create the DML structure in the database, with the specified schema, in the specified folder and deploy.

ddev dml table_name -s schema_name -f folder_path --deploy

Using DML

Generated files

  • dmlapi_table_name_j2r.sql
  • dmlapi_table_name_r2j.sql
  • dmlapi_table_name_merge.sql
  • dmlapi_table_name_purge.sql
  • dmlapi_table_name_select.sql

Query examples

QueryDescription
schema_name.dmlapi_table_name_j2r(payload::jsonb)turns a jsonb into table record.
schema_name.dmlapi_table_name_r2j(payload::table_name)receives a record from the table and transforms it into jsonb.
schema_name.dmlapi_table_name_merge(payload::jsonb)Generates a JSON in the exact format of the table from a RECORD input.
schema_name.dmlapi_table_name_purge(resource_id, user_id)Soft delete a record in a table from the resource id and user id that deleted it.
schema_name.dmlapi_table_name_select(resource_id, locking)Returns record from id (locking=true locks the record at transaction time)

Deploy a DML Scripts

$ ddev deploy script_or_folder_name

Passing in the path of a script or folder will execute all SQL commands in the scripts..

End

2.0.6

3 years ago

2.0.5

3 years ago

2.0.4

3 years ago

2.0.3

3 years ago

2.0.2

3 years ago

2.0.1

3 years ago

2.0.0

3 years ago