Compare commits

..

5 Commits

Author SHA1 Message Date
b48302b0b7 Update docker/nginx.conf
All checks were successful
Build Website / Build NPM Project (push) Successful in 1m39s
Build Website / Tag Version (push) Successful in 59s
Build Website / Build & Push Dockerfile (push) Successful in 2m15s
2025-02-03 08:54:29 -05:00
f9a181cdcc Update package.json
All checks were successful
Build Website / Build NPM Project (push) Successful in 1m21s
Build Website / Tag Version (push) Successful in 6s
Build Website / Build & Push Dockerfile (push) Successful in 1m41s
Remove unused package
2023-12-15 15:05:09 +00:00
6b25c8d7a2 Update README.md
All checks were successful
Build Website / Build NPM Project (push) Successful in 26s
Build Website / Tag Version (push) Successful in 3s
Build Website / Build & Push Dockerfile (push) Successful in 49s
2023-12-15 00:37:14 +00:00
41bbbdc801 Update .github/workflows/website.yaml
All checks were successful
Build Website / Build NPM Project (push) Successful in 27s
Build Website / Tag Version (push) Successful in 3s
Build Website / Build & Push Dockerfile (push) Successful in 56s
2023-12-14 03:54:05 +00:00
2408262170 Fixed lockfile
All checks were successful
Build Website / Build NPM Project (push) Successful in 1m8s
Build Website / Tag Version (push) Successful in 4s
Build Website / Build & Push Dockerfile (push) Successful in 54s
2023-12-11 22:26:21 -05:00
5 changed files with 20582 additions and 20547 deletions

View File

@ -23,7 +23,6 @@ jobs:
run: npm run build run: npm run build
- name: Upload Artifacts - name: Upload Artifacts
if: ${{inputs.artifacts}} != "false"
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: website name: website

View File

@ -34,6 +34,7 @@
- [Demo](#demo) - [Demo](#demo)
- [Built With](#built-with) - [Built With](#built-with)
- [Setup](#setup) - [Setup](#setup)
- [Production](#production)
- [Development](#development) - [Development](#development)
- [License](#license) - [License](#license)
@ -52,11 +53,27 @@ Website: https://maps.zakscode.com
### Built With ### Built With
[![Angular](https://img.shields.io/badge/Angular-DD0031?style=for-the-badge&logo=angular)](https://angular.io/) [![Angular](https://img.shields.io/badge/Angular-DD0031?style=for-the-badge&logo=angular)](https://angular.io/)
[![Docker](https://img.shields.io/badge/Docker-384d54?style=for-the-badge&logo=docker)](https://docker.com/)
[![Firebase](https://img.shields.io/badge/Firebase-FFFFFF?style=for-the-badge&logo=firebase)](https://firebase.google.com/) [![Firebase](https://img.shields.io/badge/Firebase-FFFFFF?style=for-the-badge&logo=firebase)](https://firebase.google.com/)
[![TypeScript](https://img.shields.io/badge/TypeScript-3178C6?style=for-the-badge&logo=typescript&logoColor=white)](https://typescriptlang.org/) [![TypeScript](https://img.shields.io/badge/TypeScript-3178C6?style=for-the-badge&logo=typescript&logoColor=white)](https://typescriptlang.org/)
## Setup ## Setup
<details>
<summary>
<h3 id="production" style="display: inline">
Production
</h3>
</summary>
#### Prerequisites
- [Docker](https://docs.docker.com/install/)
#### Instructions
1. Run the docker image: `docker run -p 80:80 ztimson/map-alliance`
2. Open http://localhost
</details>
<details> <details>
<summary> <summary>
<h3 id="development" style="display: inline"> <h3 id="development" style="display: inline">
@ -70,7 +87,7 @@ Website: https://maps.zakscode.com
#### Instructions #### Instructions
1. Install the dependencies: `npm install` 1. Install the dependencies: `npm install`
2. Start the Angular server: `npm run start` 2. Start the Angular server: `npm run start`
3. Open [http://localhost:4200](http://localhost:4200) 3. Open http://localhost:4200
</details> </details>

View File

@ -1,31 +1,31 @@
worker_processes auto; worker_processes auto;
pid /var/run/nginx.pid; pid /var/run/nginx.pid;
events { events {
worker_connections 1024; worker_connections 1024;
} }
http { http {
include mime.types; include mime.types;
default_type application/octet-stream; default_type application/octet-stream;
gzip on; gzip on;
gzip_proxied any; gzip_proxied any;
gzip_types text/plain text/css application/xml application/xhtml+xml application/rss+xml application/javascript application/x-javascript application/json application/x-font-woff; gzip_types text/plain text/css application/xml application/xhtml+xml application/rss+xml application/javascript application/x-javascript application/json application/x-font-woff;
gzip_vary on; gzip_vary on;
gzip_disable "MSIE [1-6]\.(?!.*SV1)"; gzip_disable "MSIE [1-6]\.(?!.*SV1)";
sendfile off; sendfile off;
keepalive_timeout 65; keepalive_timeout 65;
server { server {
listen 80; listen 80;
index index.html; index index.html;
root /usr/share/nginx/html; root /usr/share/nginx/html;
autoindex off; autoindex off;
location / { location / {
try_files $uri$args $uri$args/ /index.html; try_files $uri $uri/ /index.html;
} }
} }
} }

41046
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -45,7 +45,6 @@
"@angular/cli": "^17.0.0", "@angular/cli": "^17.0.0",
"@angular/compiler-cli": "^17.0.0", "@angular/compiler-cli": "^17.0.0",
"@types/leaflet": "^1.5.1", "@types/leaflet": "^1.5.1",
"@types/lodash": "^4.14.138",
"firebase-tools": "^12.0.0", "firebase-tools": "^12.0.0",
"typescript": "~5.2.2" "typescript": "~5.2.2"
} }