Hack4Impact-Princeton / alp-portal

0 stars 4 forks source link

Getting Started

To get a copy of the repository locally:

git clone https://github.com/Hack4Impact-Princeton/alp-portal.git

MongoDB Setup

Create a local environment file:

cp .env.local.example .env.local

Get the MONGODB_URI connection string from your MongoDB Compass account.

Contributing to the Repository

Create a new, local branch to make changes

git branch <name-issue number>
git switch <name-issue number>

To test locally: yarn run dev

Viewing all your local changes:

git checkout

Staging and Commiting:

git add <all files you made changes to>
git commit

Write your commit message

git -–set-upstream origin <branch-name>