Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions docs/crud/0-index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# What is CRUD?

The current state of web development almost always involves interaction with a database. That said, it is necessary to perform certain operations with it. Hence the need to use the 4 basic CRUD operations.
A great advantage of these operations is that with them alone you can create a complete web application.
### Crud Meaning
Meaning of CRUD: acronym referring to the 4 basic functions that are executed in a database model:

##### Create:
- This function allows the application to create data and save it to the database.
##### Read:
- This function allows the application to read data from the database.
##### Update
- This function allows the application to update existing data in the database.
##### Delete
- This function allows the application to delete information from the database.
#


## Development checkllist
[Checklist](01-checklist.md)

## Backend flow and steps
[Flow - Backend](1-backend.md)
## Frontend flow and steps
[Flow - FrontEnd](2-frontend.md)



44 changes: 44 additions & 0 deletions docs/crud/01-checklist.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Development checkllist

## Steps to keep in mind when developing a CRUD app



### Backend:

- [Models and DB](1-backend.md#models)

- [Authentication](1-backend.md#authentication)

- [Permissions](1-backend.md#permissions)

- [Logging](1-backend.md#logging)

- [Serializers](1-backend.md#serializers)

- [Views](1-backend.md#views)



### Frontend:

- [Authentication](2-frontend.md#authentication)

- [Validation](2-frontend.md#validation)

- [TypeScript](2-frontend.md#typescript)

- [Responses](2-frontend.md#responses)

- [Axios](2-frontend.md#axios)


#
## Index
[Index](0-index.md)

## Backend flow and steps
[Flow - Backend](1-backend.md)
## Frontend flow and steps
[Flow - FrontEnd](2-frontend.md)

Loading