-
git clone <url>
: Clone the project to your workspace -
nvm install
: Install and use the correct version of node for the project -
npm i
: Install required packages using npm -
Enable these VSCode extensions in the project workspace:
See Scripts > Running below.
These scripts are located in package.json
and can be run using npm run <script>
.
dev
: Starts Next.js in development mode.build
: Builds the application for production usage and outputs the generated static site toout/
.serve
: Serves the built static files fromout/
.
lint:
Run Next.js's built-in ESLint configuration.prettier
: Runs Prettier to format all files in the project directory.
Please follow the GitHub flow for contributions:
-
Update your local main branch
Switch to your main branch and pull the latest changes from the remote repository:
git switch main git pull --prune
- The
--prune
option removes any references to branches that no longer exist on the remote.
- The
-
Create a new branch
Name your branch following the convention
issue-number
(e.g.,issue-1
):git switch -c <issue-number> main
- If no issue exists for the change you are making, please create one.
-
Make your changes
Start the development server:
npm run dev
-
Test your changes
Run the following checks to ensure everything works as expected:
npm run lint npm run build npm start:static
-
Review your changes
Check which files have been changed:
git status
-
Stage your changes
Add the relevant files to staging:
git add <files>
-
Commit your changes
Write a meaningful commit message:
git commit -m "<commit message>"
-
Push your branch
Push your changes and set the upstream branch:
git push -u origin <your-branch-name>
-
Create a pull request
Create a pull request on GitHub. Fill in the template and link it to the issue using:
Fixes #[issue number]
- Language: JavaScript
- Framework: Next.js
- Styling: TailwindCSS
- Authentication: react-oidc-context
- Runtime: Node.js
- Package Manager: npm
- Version Control System:
- CI/CD: GitHub Actions
- Linting: ESLint
- Formatting: Prettier
- Git Hooks: