We are working on a seeder to generate this admin user: admin password: usuario
git checkout -b roge
PULL REQUEST to test We should avoid experimental code on Main
We will approve after a revision
Not this time
For any functionality use K6
Create a Javascript file and add import http from 'k6/http'
Add result configuration export const options = { summaryTrendStats: ["avg", "min", "med", "max", "p(25)", "p(75)", "p(95)"] }
Then write export default function () {}
Write all in the brackets
Yes and you should, try to write the CRUD of the model
Check Trello if you do not see the issue related
New migration: npx sequelize-cli migration:generate --name create-yourTableName-table
New model+migration: npx sequelize-cli model:generate --name tableName --attributes attribute:type
New seeder: npx sequelize-cli seed:generate --name seederName
Replace yourTableName | tableName | attribute:type | seederName with what you need
Run migrations: npx sequelize-cli db:migrate
Run seeders: npx sequelize-cli db:seed:all
Undo migrations: npx sequelize-cli db:migrate:undo
Undo seeders: npx sequelize-cli db:seed:undo:all
[^1]: To clone with SSH you should have your public SSH key and it should be registed on your account https://www.theserverside.com/blog/Coffee-Talk-Java-News-Stories-and-Opinions/github-clone-with-ssh-keys
[^2]: It means to write the test first then the functionality, so all functionalities behave as expected. More info