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:
No login required, navigate to your prj2 student home dashboard and select your team. You can bookmark that page.
Code setup
See the GitHub page on the starter code.
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 - pgAdmin Setup – Browse your deployed database
- How Deployment Works – What happens when you push