Skip to content

Latest commit

 

History

History
57 lines (52 loc) · 2.1 KB

README.md

File metadata and controls

57 lines (52 loc) · 2.1 KB

FindFreelance_FrontEnd

FindFreelance is a website in Next.js with React, that allows companies to search for freelance according to several criteria and propose them a mission. (3rd year Bachelor - in Progress)

The website using :

Installation

  1. Clone the repository
git clone https://github.com/KevOneRedOne/FindFreelance_FrontEnd
  1. Use the .env.example to create a .env file with your own credentials for the API and App
cd API
cp .env.example .env
cd ../findfreelance
cp .env.example .env
  1. Install the dependencies for the API
cd API
npm install

a. Then, run the API

npm run dev
  1. Install the dependencies for the FrontEnd
cd ../findfreelance
npm install

a. Then, run the FrontEnd

npm run dev