Skip to content

Latest commit

 

History

History
72 lines (51 loc) · 2.1 KB

Getting-Started.md

File metadata and controls

72 lines (51 loc) · 2.1 KB

Getting Started

These instructions will get you a copy of this project on your local machine for development and testing purposes.

Prerequisites

The following software is required to be installed on your system:

  • Node v14.16.0
  • Npm 6.14.11

Type the following commands in the terminal to verify your node and npm versions

node -v
npm -v

Install

Follow the following steps to get development environment running.

  • Clone this repository GitHub.

    git clone https://github.com/aakankshabhende/Delicaacy.git
  • Install node modules from the terminal

    cd Delicaacy
    cd frontend
    npm install
    cd..
    cd server
    npm install

To start the front-end development server

cd frontend
npm start

To start the back-end server

This command will start the MongoDB server and will connect to the database.

cd..
cd backend
node app.js

Developed With

  • Visual Studio Code - A source code editor developed by Microsoft for Windows, Linux and macOS. It includes support for debugging, embedded Git control, syntax highlighting, intelligent code completion, snippets, and code refactoring
  • Node.js - Javascript runtime
  • React - A javascript library for building user interfaces
  • Babel - A transpiler for javascript
  • Webpack - A module bundler
  • CSS - A stylesheet language used to describe the presentation of a document written in HTML.
  • Bootstrap 4 - Bootstrap is an open source toolkit for developing with HTML, CSS, and JS
  • Express js - Express is a minimal and flexible Node.js web application framework that provides a robust set of features for web and mobile applications.
  • MongoDB Atlas - MongoDB Atlas is the global cloud database service for modern applications.
  • Postman - It is an API platform for building and using APIs.