Compare commits

..

2 Commits

Author SHA1 Message Date
8795220c3e update .gitignore to ignore ide files
All checks were successful
Deploy main page / deploy (push) Successful in 1m30s
2025-07-03 14:04:04 -04:00
6e61442129 deploy main site with docker 2025-07-03 14:02:45 -04:00
3 changed files with 13 additions and 8 deletions

1
.gitignore vendored
View File

@ -9,3 +9,4 @@ yarn-error.log*
.pnp.js
.vscode/*
.idea/*

11
Dockerfile Normal file
View File

@ -0,0 +1,11 @@
# Use a lightweight nginx image
FROM nginx:alpine
# Copy your static files into the nginx web directory
COPY . /usr/share/nginx/html
# Expose the port nginx serves from
EXPOSE 80
# Start nginx
CMD ["nginx", "-g", "daemon off;"]

View File

@ -1,7 +0,0 @@
{
"root": ".",
"clean_urls": false,
"routes": {
"/": "index.html"
}
}