Skip to content

Commit

Permalink
Add RBAC schema/tables/view + navigator seeding + dev role seeds
Browse files Browse the repository at this point in the history
  • Loading branch information
kyle1morel committed Jul 22, 2024
1 parent b0bd1fa commit 0e4bd5b
Show file tree
Hide file tree
Showing 5 changed files with 825 additions and 1 deletion.
5 changes: 5 additions & 0 deletions app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,21 +24,26 @@
"postclean:all": "npm run clean",
"postprisma:migrate:down": "npm run prisma:sync",
"postprisma:migrate:up": "npm run prisma:sync",
"postprisma:migrate:dev": "npm run seed:dev",
"postprisma:migrate": "npm run prisma:sync",
"postprisma:sync": "npm run prisma:generate",
"postrebuild": "npm run build",
"postreinstall": "npm install",
"postseed:dev": "npm run prisma:sync",
"posttest": "ts-node ./lcov-fix.ts",
"prelint": "npm run typecheck",
"pretest": "npm run lint",
"prisma:generate": "prisma generate",
"prisma:migrate:down": "npm run migrate:down",
"prisma:migrate:up": "npm run migrate:up",
"prisma:migrate:dev": "npm run migrate:latest",
"prisma:migrate": "npm run migrate:latest",
"prisma:sync": "prisma db pull",
"purge": "rimraf node_modules",
"rebuild": "npm run clean",
"reinstall": "npm run purge",
"seed:make": "knex seed:make",
"seed:dev": "knex seed:run --specific=dev_roles.ts",
"seed": "knex seed:run",
"serve": "ts-node-dev --respawn --transpile-only --rs --watch bin,config,dist ./bin/www",
"start": "ts-node --transpile-only ./bin/www",
Expand Down
Loading

0 comments on commit 0e4bd5b

Please sign in to comment.