Skip to content

Core services for student project selection and assignment web app.

Notifications You must be signed in to change notification settings

ZOPH3/StudentAllocCoreServices

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Prisma

By default, prisma is configured to be used with mysql to google. Prisma allows for alternative databases to be used.

Required in schema.prisma

datasource db {
  provider = process.env.DBPROVIDER
  url      = "mysql://username:password@host:port/table"
}

Notes

prisma generate

// Use seed file to populate database
prisma db seed 

Start up backend server

npm run dev

Start up frontend server

npm run serve

About

Core services for student project selection and assignment web app.

Resources

Stars

Watchers

Forks