/ShopApp

A simple but fullstack e-commerce web application.

Primary LanguageTypeScript

ShopApp

A simple yet fully functional full-stack e-commerce project, built with Postgres, Express, React and Node. It's also my first project.

Setup locally

You can setup the project locally by following the steps in order:

  • Open up your console and clone the project
  git clone https://github.com/philipegabriel12/ShopApp.git
  • Go to project directory
  cd PERN-Store
  • Install the dependencies
  npm install
  • Go to the server directory and install the dependencies
  cd server
  npm install
  • Go to the client directory and install the dependencies
  cd ..
  cd client
  npm install

Run locally

  • Go to the server directory and start the server
  npm run dev
  • Go to the client directory and start the server
  npm run start
  • Or start both client and server using concurrently from the project directory
  npm run dev