This repository contains the frontend for the Predifi project. Follow the steps below to set up and run the project locally.
Ensure you have the following installed on your system:
To get started, clone this repository using Git:
git clone https://github.com/your-org/predifi-frontend.git
cd predifi-frontendInstall the necessary packages using Yarn or npm:
yarn install
# or
npm installCreate a .env.local file in the root directory and configure the required environment variables.
Example:
NEXT_PUBLIC_API_URL=https://api.example.com
NEXT_PUBLIC_APP_ENV=developmenthttps://sepolia.starkscan.co/contract/0x06ff646a722404885793669af5270d4285a8acbb6e7193332ad390844f300121
Start the development server:
yarn dev
# or
npm run devThe app will be available at http://localhost:3000/.
To create an optimized production build:
yarn build
# or
npm run buildTo preview the production build:
yarn start
# or
npm startWe welcome contributions! Please follow these steps:
- Fork the repository.
- Create a new branch:
git checkout -b feature-name
- Make your changes and commit them:
git commit -m "Add new feature" - Push to your branch:
git push origin feature-name
- Create a pull request for review.
This project is licensed under MIT License.