Updated queries/endpoints, made admin page

This commit is contained in:
2023-11-20 16:48:20 -05:00
parent 319f64bc16
commit d45ed73eed
22 changed files with 735 additions and 127 deletions

View File

@@ -1,9 +1,8 @@
#!make
SHELL := /bin/bash
include .env
SHELL := /bin/bash
.PHONY: help build start stop lint
help: ## This info
@@ -11,17 +10,17 @@ help: ## This info
@cat Makefile | grep -E '^[a-zA-Z\/_-]+:.*?## .*$$' | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
@echo
build: ## Build Docker containers
build: ## Build the Docker image
docker compose build
utils: ## Start the utils
docker compose up -d db
docker compose up -d redis
up: ## Start Docker containers
up: ## Start the Docker containers
docker compose up -d
down: ## Stop Docker containers
down: ## Stop the Docker containers
docker compose down
connect: ## Connect to the Weather DB