chore: backward compatibilty notes

This commit is contained in:
Supan Adit Pratama 2024-11-10 12:14:34 +07:00
parent 46efa4b4fa
commit ec323adae9

View File

@ -16,6 +16,8 @@ This project is still in development and not ready for production, it's not even
Nest Auto CRUD is a library that provides a set of modules, decorator, service, and many more to reduce the boilerplate code. Nest Auto CRUD is a library that provides a set of modules, decorator, service, and many more to reduce the boilerplate code.
**I will make the API with backward compatibility, so don't worry about upgrading version**
## Roadmap ## Roadmap
### Basic Thing ### Basic Thing
@ -41,10 +43,11 @@ $ npm install @aditama-labs/nest-autocrud
// Yes, either Prisma or TypeORM just need this single line of ENV // Yes, either Prisma or TypeORM just need this single line of ENV
// PostgreSQL Example // PostgreSQL Example
DATABASE_URL="postgresql://johndoe:randompassword@localhost:5432/mydb?schema=public" DATABASE_URL =
'postgresql://johndoe:randompassword@localhost:5432/mydb?schema=public';
// MySQL Example // MySQL Example
DATABASE_URL="mysql://johndoe:randompassword@localhost:3306/mydb" DATABASE_URL = 'mysql://johndoe:randompassword@localhost:3306/mydb';
``` ```
### Prisma ORM ### Prisma ORM