Skip to content

Latest commit

 

History

History
44 lines (27 loc) · 1.12 KB

README.md

File metadata and controls

44 lines (27 loc) · 1.12 KB

How to run this project

To use this project, first download it to your machine and create a .env file with variables according to the .env.example file. Once you've done that, it can be used either on a local server or with the help of Docker.

  • Using Locally
  • If you choose to use it on a local server, you will need to install the project's dependencies with the following command:

    $ npm install

    After that, the project will be ready to run using one of the following commands:

    $ npm run start

  • Using Docker
  • To do this, first make sure you have Docker properly installed on your machine. Then use the following commands in sequence:

    $ docker build -t clean-architecture .
    
    $ docker run -p <docker_port>:<env_port> --env-file .env clean-architecture

    Author