- Create database
- Copy .env.example to .env and fill with database credentials.
To install dependencies, run
npm install- Migrations:
npx sequelize-cli db:migrate- Seeders:
npx sequelize-cli db:seed:allnpm startIn this endpoint you are gonna find all the members of the organization, these members are listed per pages
- Set the page you wanna see
- If the page that you set doesn't have content to show, it is gonna display this
- To display some members' attributes, such as name and image, log in as an administrator (the data of the administrators will be provided only by the developers).
You only need to complete every field in the next schema to create in a successfully way a new member.
- nameMember is the name of the member
- facebookUrl is the url address of the facebook page of the member
- instagramUrl is the url address of the instagram page of the member
- linkedinUrl is the url address of the linkedin page of the member
- image is gonna be the image that the member will show to the world
- description is about the rol of the member inside the organization
You only need to complete every field in the next schema to update the information of a member
- id is gonna be the identification of the member you wanna update
- nameMember is the name of the member
- facebookUrl is the url address of the facebook page of the member
- instagramUrl is the url address of the instagram page of the member
- linkedinUrl is the url address of the linkedin page of the member
- image is gonna be the image that the member will show to the world
- description is about the rol of the member inside the organization
- To delete a member you need to write its id, the id is the identification of the member you wanna delete