Skip to content

Commit

Permalink
Merge pull request #42 from DerianCordobaPerez/refactor-web-readme
Browse files Browse the repository at this point in the history
refactor(Web):  Changing small details
  • Loading branch information
DerianCordobaPerez authored Jun 2, 2022
2 parents 947bbe5 + d3a2a41 commit e248556
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions web/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@
</div>

```json
"dev:up": "docker-compose -f docker-compose.yml -f docker-compose.dev.yml up",
"dev:up:build": "npm run dev:up -- --build",
"prod:up": "docker-compose -f docker-compose.yml -f docker-compose.prod.yml up"
"dev:docker:up": "docker-compose -f docker-compose.yml -f docker-compose.dev.yml up",
"dev:docker:up:build": "npm run dev:up -- --build",
"prod:docker:up": "docker-compose -f docker-compose.yml -f docker-compose.prod.yml up",
"test:docker:up": "docker-compose -f docker-compose.test.yml up -d"
```

## Environment variables
Expand Down Expand Up @@ -53,13 +54,16 @@ git clone [email protected]:DerianCordobaPerez/Thesis.git
cd Thesis/web

# Start Docker container, in case it is the first time to build it
npm run dev:up
npm run dev:docker:up

# Start Docker container but build the image at the same time
npm run dev:up:build
npm run dev:docker:up:build

# Start Docker container with the intention of deploying it in production mode
npm run prod:up
npm run prod:docker:up

# Start the Postgres Docker container with the intention of running the tests
npm run test:docker:up
```

## Installation (Manually)
Expand Down

0 comments on commit e248556

Please sign in to comment.