-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(Web): Changing small details
- Loading branch information
1 parent
947bbe5
commit d3a2a41
Showing
1 changed file
with
10 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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) | ||
|