Working on makefile for docker

This commit is contained in:
2023-09-04 20:28:36 -04:00
parent cf3ee4feef
commit 3b985ffecb
3 changed files with 29 additions and 20 deletions

View File

@@ -18,8 +18,17 @@ build: ## Install the dependencies and build
start: ## Start the dev instance
npm run dev
up:
docker compose up -d
down:
docker compose down
connect:
docker exec -it aviation_weather_db psql -U postgres
lint: ## Run the linter
npm run lint
clean: ## Remove node modules
rm -rf node_modules
rm -rf data node_modules backend/target