Skip to content

dabarcenas6921/init-dashboard

Folders and files

NameName
Last commit message
Last commit date
Nov 17, 2023
Nov 17, 2023
Oct 4, 2023
Sep 26, 2023
Sep 26, 2023
Oct 5, 2023
Nov 16, 2023
Nov 17, 2023
Nov 17, 2023
Sep 26, 2023
Sep 26, 2023
Nov 13, 2023
Oct 23, 2023

Repository files navigation

INIT Dashboards

INIT Dashboards serves as a dedicated website for hosting organization information ranging from upcoming events, program updates, job positings, and more!

Initialization

Make sure the most recent version of NodeJS is installed on your local device.

  1. Clone the repo.
git clone https://github.com/dabarcenas6921/init-dashboard.git
  1. Install the necessary dependencies
npm install
  1. Add required environment variables to a local .env file at the root of your local instance.

    • NOTE: Refer to the team if they are unknown or access is required.
  2. Initialize Prisma Database

npx prisma db push

Pull Requests

Branching

  1. Ensure you are up-to-date with main:
git pull
  1. Create a new remote branch for any new changes.
git checkout -b <branch-name>
  • Switch between branches:
git switch <branch-name>

Creating a Merge Request

  1. Stage changes:
git add <file-name>

OR (to stage all changes):

git add .
  1. Set a commit message.
git commit -m "<message>"
  1. Create merge request
git push origin
  • NOTE: An approval of the changes is required before completing the merge.

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.