chore: atualiza seed e inclui .codex/plans no gitignore

This commit is contained in:
2026-04-24 19:51:16 -05:00
parent fbe158761f
commit 36a1875ee6
3 changed files with 5 additions and 15 deletions

View File

@@ -27,17 +27,7 @@ async function upsertUser({ email, password }) {
async function main() {
await upsertUser({
email: 'student@example.com',
password: 'student123'
})
await upsertUser({
email: 'admin@example.com',
password: 'admin123'
})
await upsertUser({
email: 'limited@example.com',
password: 'limited123'
password: '123456'
})
}