This repository contains the frontend code for the Collabberry project, a collaborative platform designed to enhance teamwork and productivity.
Follow the instructions below to set up and run the project locally.
Ensure you have the following installed:
-
Clone the repository:
git clone https://github.com/collabberry/frontend.git cd frontend -
Install dependencies:
npm install # or yarn install -
Environment Variables
Before running the application, set up the required environment variables. Create a
.envfile in the root directory and add the following:VITE_APP_BASE_URL="" VITE_NODE_ENV="development" VITE_APP_TEAM_POINTS_FACTORY_ADDRESS= VITE_APP_TEAM_POINTS_FACTORY_ADDRESS_CELO= VITE_APP_URL= VITE_APP_NETWORK="Arbitrum Sepolia" VITE_APP_BLOCK_EXPLORER="https://sepolia.arbiscan.io/tx"# VITE_APP_BASE_URL="" # VITE_NODE_ENV="production" # VITE_APP_TEAM_POINTS_FACTORY_ADDRESS= # VITE_APP_TEAM_POINTS_FACTORY_ADDRESS_CELO= # VITE_APP_URL= # VITE_APP_NETWORK="Arbitrum" # VITE_APP_BLOCK_EXPLORER="https://arbiscan.io/tx"Ensure the appropriate values are filled in for each variable before running the application.
Start the development server:
npm run dev
# or
yarn devThe application will be available at http://localhost:5173.
Happy coding!