Skip to content

Latest commit

 

History

History
70 lines (47 loc) · 1.54 KB

README.md

File metadata and controls

70 lines (47 loc) · 1.54 KB

ACMS Frontend

More info at ACMS Documentation

Tools that needs to be installed:

Tech Stack

Setting up your application

  1. Clone the Repository:
git clone https://github.com/SAMAHAN-Systems-Development/ACMS-backend-2023
  1. Fetch the updates:
git fetch
  1. Switch to the branch of your ticket, for example:
git checkout 1-create-student-registration-form-for-each-event
  1. Install the libraries with this command:
npm i
  1. Create an .env file in the root directory and add the following:
NEXT_APP_BACKEND_URL=http://localhost:3000
NEXT_PUBLIC_SUPABASE_URL=http://127.0.0.1:54321
NEXT_PUBLIC_SUPABASE_ANON_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZS1kZW1vIiwicm9sZSI6ImFub24iLCJleHAiOjE5ODM4MTI5OTZ9.CRXP1A7WOeoJeXxjNni43kdQwgnWNReilDMblYTn_I0

Running your application

  1. Pull from the main
git pull origin main
  1. Install the libraries
npm i
  1. Run the NextJS frontend
npm run dev