Getting Started
Rifbid is designed to facilate the connection between government organizations and suitable matching companies. This guide will explain how to set up the front end for the project locally.
Quick Start
Clone the project locally
Clone the project by running the command below in your terminal
git clone https://github.com/Orbtronics-Dev/RifBid.gitThen navigate to your project directory and install the dependencies by running the command below
npm installNext create a .env.development file and set up the following env variables.
NEXT_PUBLIC_API_URL=http://127.0.0.1:5000
NEXT_PUBLIC_EMULATOR_FIRESTORE_PATH=127.0.0.1:8080NEXT_PUBLIC_EMULATOR_AUTH_PATH=127.0.0.1:9099You can now start the server by running
npm run dev