Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
.PHONY: help up build rebuild down clear fsh bsh flog blog pr

# Default target
.DEFAULT_GOAL := help

# Tools
DC := docker compose

help: ## Show this help message
@awk 'BEGIN {FS = ":.*## "} /^[a-zA-Z0-9_.-]+:.*## / {printf "\033[36m%-10s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST)

up: ## Start all services
$(DC) up -d

build: ## Build and start
$(DC) up --build -d

rebuild: ## Rebuild and force recreate, then start
$(DC) up --build --force-recreate -d

down: ## Stop containers
$(DC) down

clear: ## Stop and clear local images
$(DC) down --volumes --rmi local

fsh: ## Frontend shell
$(DC) exec next sh -i

bsh: ## Backend shell
$(DC) exec go sh -i

flog: ## Frontend logs
$(DC) logs next -f

blog: ## Backend logs
$(DC) logs go -f

pr: ## Run pull_request gh action locally
./bin/act pull_request
213 changes: 213 additions & 0 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"lint": "next lint"
},
"dependencies": {
"@headlessui/react": "^2.2.7",
"@tsparticles/engine": "^3.8.1",
"@tsparticles/react": "^3.0.0",
"@tsparticles/slim": "^3.8.1",
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Roboto, Poppins } from 'next/font/google';
import './globals.css';
import NavBar from '@/components/UI/NavBar';
import Footer from '@/components/UI/Footer';
import ChatWindow from '@/components/Chat/ChatWindow';
import ChatWindow from '@/components/chat/ChatWindow';
import ClientInit from '@/components/ClientInit';
import CookieConsent from '@/components/UI/CookieConsent';

Expand Down
76 changes: 0 additions & 76 deletions frontend/src/components/Login/LoginBox.tsx

This file was deleted.

5 changes: 0 additions & 5 deletions frontend/src/components/Login/LoginReturn.tsx

This file was deleted.

Loading