ADD New Pre-Commit hooks and Formatting code

This commit is contained in:
Kentai Radiquum 2024-04-23 18:30:35 +05:00
parent 5c9c3e67fa
commit 9e75a0783c
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
26 changed files with 4163 additions and 105 deletions

View file

@ -0,0 +1,25 @@
http:
routers:
dashboard:
rule: Host(`traefik.test.local`) && (PathPrefix(`/api`) || PathPrefix(`/dashboard`))
service: api@internal
anix-api:
entryPoints:
- web
rule: Host(`anix.test.local`) && PathPrefix(`/api`)
service: anix-api-svc
anix-front:
entryPoints:
- web
rule: Host(`anix.test.local`)
service: anix-front-svc
services:
anix-api-svc:
loadBalancer:
servers:
- url: "http://127.0.0.1:8000"
anix-front-svc:
loadBalancer:
servers:
- url: "http://127.0.0.1:3000"