Skip to main content

3 posts tagged with "2.1.2"

View All Tags

ยท 2 min read
Cleber Wilson

2.1.2โ€‹

Changedโ€‹

Documentation for Logging: Database Deployment Optimization and Docker Image Buildingโ€‹

Introductionโ€‹

This documentation details the optimization implemented in the database deployment process, which consequently facilitated the construction of the Docker image for the application. This procedure is an essential part of ensuring efficient and safe deployment of the application in a container environment.

File Structure and Scriptsโ€‹

  1. Schema files (.prisma):

    • mongodb-schema.prisma, mysql-schema.prisma, postgresql-schema.prisma: Define the schemas of the MongoDB, MySQL and PostgreSQL databases, respectively.
    • Function: Structure the database according to the chosen provider.
  2. Configuration File (.env.dev):

    • Contains the environment variables, including database settings.
    • Function: Provides crucial information for connecting and configuring the database.
  3. Dockerfile:

    • Defines the instructions for building the application's Docker image.
    • Function: Uses environment variables to configure the application, including connection to the database.
  4. Database Operation Scripts (.sh):

    • env_functions.sh: Manipulates and exports environment variables.
    • run_database_operation_deploy.sh, run_database_operation_generate.sh, run_database_operation_migrate.sh: Execute database deployment, generation and migration operations.
    • setup_database_url.sh: Configures the database URL.
    • Function: Automate the configuration process and database operations.

Optimizations Implementedโ€‹

  1. Database Configuration Automation:

    • The implementation of scripts such as setup_database_url.sh and env_functions.sh automated the configuration of database connection variables, reducing manual errors and speeding up the setup process.
  2. Integration with Dockerfile:

    • .env.dev environment variables are embedded in the Dockerfile, ensuring that the built Docker image is aligned with the database configurations.
    • This integration ensures consistency between the development and production environment.
  3. Flexibility in Schema Management:

    • The use of specific schema files for each type of database (MongoDB, MySQL, PostgreSQL) in the prisma directory allows flexibility and ease in migrating or changing the database.
  4. Database Operation Scripts:

    • Scripts like run_database_operation_migrate.sh facilitate critical operations such as migrations, making them an integral part of the CI/CD process, which reduces deployment time and possible failures.

Conclusionโ€‹

Optimization of the database deployment process and integration with Docker image construction provided a more efficient and reliable workflow. These improvements not only speed up the deployment process, but also ensure that the application is always synchronized with the database settings, regardless of the execution environment. This procedure is a clear example of how automation and good configuration management can positively impact the software development lifecycle.

ยท 2 min read
Cleber Wilson

2.1.2โ€‹

Changedโ€‹

Documentation for Logging: Database Deployment Optimization and Docker Image Buildingโ€‹

Introductionโ€‹

This documentation details the optimization implemented in the database deployment process, which consequently facilitated the construction of the Docker image for the application. This procedure is an essential part of ensuring efficient and safe deployment of the application in a container environment.

File Structure and Scriptsโ€‹

  1. Schema files (.prisma):

    • mongodb-schema.prisma, mysql-schema.prisma, postgresql-schema.prisma: Define the schemas of the MongoDB, MySQL and PostgreSQL databases, respectively.
    • Function: Structure the database according to the chosen provider.
  2. Configuration File (.env.dev):

    • Contains the environment variables, including database settings.
    • Function: Provides crucial information for connecting and configuring the database.
  3. Dockerfile:

    • Defines the instructions for building the application's Docker image.
    • Function: Uses environment variables to configure the application, including connection to the database.
  4. Database Operation Scripts (.sh):

    • env_functions.sh: Manipulates and exports environment variables.
    • run_database_operation_deploy.sh, run_database_operation_generate.sh, run_database_operation_migrate.sh: Execute database deployment, generation and migration operations.
    • setup_database_url.sh: Configures the database URL.
    • Function: Automate the configuration process and database operations.

Optimizations Implementedโ€‹

  1. Database Configuration Automation:

    • The implementation of scripts such as setup_database_url.sh and env_functions.sh automated the configuration of database connection variables, reducing manual errors and speeding up the setup process.
  2. Integration with Dockerfile:

    • .env.dev environment variables are embedded in the Dockerfile, ensuring that the built Docker image is aligned with the database configurations.
    • This integration ensures consistency between the development and production environment.
  3. Flexibility in Schema Management:

    • The use of specific schema files for each type of database (MongoDB, MySQL, PostgreSQL) in the prisma directory allows flexibility and ease in migrating or changing the database.
  4. Database Operation Scripts:

    • Scripts like run_database_operation_migrate.sh facilitate critical operations such as migrations, making them an integral part of the CI/CD process, which reduces deployment time and possible failures.

Conclusionโ€‹

Optimization of the database deployment process and integration with Docker image construction provided a more efficient and reliable workflow. These improvements not only speed up the deployment process, but also ensure that the application is always synchronized with the database settings, regardless of the execution environment. This procedure is a clear example of how automation and good configuration management can positively impact the software development lifecycle.

ยท One min read
Cleber Wilson

2.1.2โ€‹

Addedโ€‹

  • ๐Ÿ†•๐Ÿ’ฌ New property that enables quoting messages in chatwoot. [ed12fe7]
  • ๐Ÿ†•๐Ÿ”— MinIO integration to improve object storage in the API. [41262dd] [d5959b9]
  • ๐Ÿ†•๐Ÿ”— Integration with typebot - endpoints and services. [8970188]

Changedโ€‹

  • ๐Ÿ›๐Ÿ’ฅ name property limitation adjustment. [31feb72]
  • ๐Ÿ”„๐Ÿ”—๐Ÿ“Š Compatibility tables with added integrations. [14100e1]
  • ๐Ÿณ๐Ÿ—๏ธ Database Deployment Optimization and Docker Image Building. [014c30e]
  • ๐Ÿ”„โž• Reorganization and addition of documentation. [aad0f4a] [c644953]
  • ๐Ÿ”„๐Ÿค– Code refactoring to meet compatibility with Typebot.
  • โž•๐Ÿค– Adding and adjusting dependencies for compatibility with Typebot. [bb65466]
  • ๐Ÿ”„โž• Reorganization and addition of documentation. [67c893b]
  • ๐Ÿ’พ Saving http logs. [d0a37e6]
  • ๐Ÿ”„๐Ÿ“ฅ Refactoring and updated imports in the media.handler.ts file. [3f255f5]
  • ๐Ÿš€ Streams - memory optimization, speed and scalability for large volumes of data. [607c0dd]