Project Pilot is a project management application fo freelancers where you can manage all your ongoing and add clients to each projects. You can perform all the CRUD operation in this application. This webapp is made using React.js, GraphQL and MongoDB.
- Fork and Clone the Repo
git clone "https://github.com/<username>/Project-Pilot.git"
- Installing Node Modules
cd server
npm install
cd client
npm install
- Create a new database in MongoDB.
- Creating a
.env
file in server and add the following
NODE_ENV = 'development'
PORT = 5000
MONGO_URI= ''
- Now, you're ready to go! 🚀
cd server
npm run dev
cd client
npm start