Project for CS3043 - Database Systems
This README.md file will detail everything about this project.
This is a Next.js project bootstrapped with create-next-app.
- Nodejs
- MySQL Server (version 5.0 onwards)
First, clone this repository onto your onto your local machine.
Run the SQL scripts from the /SQL_files folder on your MySQL server. Run the files in this order
DDL.sqlfunctions 1.sqlfunctions 2.sqlviews.sqlreports.sql- Optionally you can run the insert statement files or include your own.
Create a .env file at the root of your project folder using the template given below. Fill these variables to connect to your SQL database.
DB_HOST='host'
DB_USER='your SQL username'
DB_PASSWORD='password'
DB_DATABASE='schema name - default is ars'
Run npm install to install all the dependencies for this project.
Run the development server using the appropriate command and go to the appropriate localhost to view the web site (Default - https://localhost:3000).
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun devUsing Tailwind CSS


