Skip to content

Latest commit

 

History

History
62 lines (47 loc) · 1.91 KB

README.md

File metadata and controls

62 lines (47 loc) · 1.91 KB

IEEE UTD Website

How to add a new feature / fix

  1. Clone the repo and switch to the dev branch This can be done by typing
git clone https://github.com/ieee-utd/ieeeutdwebsite.git

on your terminal and then

git checkout dev
  1. Creature a branch off of dev
git checkout -b some-feature dev
  1. Add whatever features you want and commit them
  2. Switch to dev branch and merge there
git checkout dev

and then

git merge some-branch
  1. Correct merge conflicts, and then commit your changes
  2. Push, which will put in a Pull Request
  3. And that's all, wait for code owner to review and accept the changes

Running the website locally

First, run the development server:

npm run dev
# or
yarn dev
# or
pnpm dev

Open http://localhost:3000 with your browser to see the result.

The pages/api directory is mapped to /api/*. Files in this directory are treated as API routes instead of React pages.

This project uses next/font to automatically optimize and load Inter, a custom Google Font.

Learn More

To learn more about Next.js, take a look at the following resources:

You can check out the Next.js GitHub repository - your feedback and contributions are welcome!

Deploy on Vercel

The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.

Check out our Next.js deployment documentation for more details.