A simple yet fully functional full-stack e-commerce project, built with Postgres, Express, React and Node. It's also my first project.
- 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
- 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