Next.js web app created for the Chapter of Media Technology's reception of newly admitted students.
- Node.js v20+
.env.localfile with environment variables located in root folder.
-
Clone repo
-
Navigate to root folder (where file
package.jsonis located). -
Install required dependencies by running
npm install -
Start development server by running
npm run dev -
Go to http://localhost:3000 in your browser.
- Find an open issue not being worked on here and assign yourself to it.
- If it requires visual work, make a design first before writing code.
- When you start writing code, make sure you work on your own branch and follow the naming convention
name/category/description-of-work, e.g.linus/feature/rework-video-pageoredvin/bugfix/login-button-hidden-mobile. The categoryfeatureis for adding, refactoring or removing a feature andbugfixis for fixing a bug. - When you are done, try running
npm run buildand see if any compilation errors occur during the build process. - Make a pull request to the
devbranch and have someone check your work.