Skip to content

How to run the project locally

Gerard Nagura edited this page Jun 2, 2023 · 3 revisions

Prerequisites

Before running the project, make sure you have the following prerequisites installed:

Installation

Follow these steps to set up the project:

  1. Clone the repository:

    git clone https://github.com/COS301-SE-2023/e-Mall.git
    
  2. Open your code editor of choice and open a terminal

  3. Add the appropriate env files in their appropriate directory

.
├── .github
├── api
│   ├── api
|       ├── .env
│       └── .env.prod
├── app
│   ├── src
|       ├── environments
|           ├── env.ts
│           └── env.prod.ts
  1. Change the project directory
    cd app
    
  2. Start the application
    yarn start
    
  3. Open your browser
  • APP:
    localhost:4200
  • API:
    localhost:3000/admin
Clone this wiki locally