feat: first glance at the front and back end

This commit is contained in:
Pierre Tellier
2025-02-03 21:38:04 +01:00
parent b401983c0f
commit ee43df370f
45 changed files with 1489 additions and 9 deletions

9
front/nginx/default.conf Normal file
View File

@ -0,0 +1,9 @@
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html index.htm;
location / {
try_files $uri $uri/ /index.html;
}
}