A "Campus Events and Entertainment Center" system.
-
Create a database named
cs304_project
in MySQL, and run the SQL scriptcreate_database.sql
to create the tables. -
Install the npm packages for the client and server.
# Download the npm package pnpm install pushd client pnpm install popd pushd server pnpm install popd
# Run the server
cd server
node src/server.js
# Run the client
cd client
pnpm start