PRJ2: Getting Started
Your GitHub repository name should have the format similar to prj2-year-teamname, for example prj2-2026-group1.
This naming convention is important, as it is used to automate your deployments to find your live app.
Your dashboard with information and useful links, can be found at:
** https://grafana.prod.fontysvenlo.dev/d/student-home/student-home?orgId=1&from=now-6h&to=now&timezone=browser&refresh=30s&var-team=year-teamname **
(replace 'year'-'teamname' with your repository name - without 'prj2')
Database integration
To keep your database working with your code, we have set up a db/init.sql.
Every time your code changes, the database is reset and db/init.sql is executed on the server.
Your init file should define the tables you need and the initial objects to store.
More info in the Database section.
Continous deployment
Simply wait 5 minutes after pushing to main.
How this works? see Deployment.
Something Wrong?
See Troubleshooting.
Learn More
- Database Guide – How
init.sqlworks, using pgAdmin - How Deployment Works – What happens when you push