Skip to content

Commit

Permalink
update config
Browse files Browse the repository at this point in the history
  • Loading branch information
cauta committed Jun 11, 2024
1 parent d9ee4c9 commit 178ba54
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 58 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ make up-deps

Start the application.
```bash
yarn start:dev onebox
yarn start:dev api
yarn start:dev monitor-service
yarn start:dev worker-service
```
Expand Down
44 changes: 0 additions & 44 deletions app/.config/nginx/default.conf.template

This file was deleted.

8 changes: 4 additions & 4 deletions app/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,21 +45,21 @@ build-dev:
.PHONY: log
log:
@echo "Building application and starting container in background mode..."
docker compose -f docker-compose-dev.yml logs onebox monitor worker -f -n 10
docker compose -f docker-compose-dev.yml logs api monitor worker -f -n 10

.PHONY: down
down:
@echo "Shutting down and removing containers for onebox..."
@echo "Shutting down and removing containers for api..."
@docker compose -f docker-compose-dev.yml down

.PHONY: stop
stop-dev:
@echo "Stopping containers for onebox..."
@echo "Stopping containers for api..."
@docker compose -f docker-compose-dev.yml stop

.PHONY: shell
shell:
@docker exec -ti onebox /bin/sh
@docker exec -ti api /bin/sh

.PHONY: shell-db
shell-db:
Expand Down
9 changes: 0 additions & 9 deletions app/nest-cli.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,6 @@
"tsConfigPath": "apps/api/tsconfig.app.json"
}
},
"onebox": {
"type": "application",
"root": "apps/onebox",
"entryFile": "main",
"sourceRoot": "apps/onebox/src",
"compilerOptions": {
"tsConfigPath": "apps/onebox/tsconfig.app.json"
}
},
"monitor-service": {
"type": "application",
"root": "apps/monitor-service",
Expand Down

0 comments on commit 178ba54

Please sign in to comment.