Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '10.x'
node-version: '16.x'
- name: Setup Java
uses: actions/setup-java@v1
with:
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '10.x'
node-version: '16.x'
- name: Setup Tools
run: |
npm install -g firebase-tools
Expand Down
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

## Getting Started

This is a game platform developed using Angular framework with Node and Firestore
This is a game platform developed using the Angular framework with Node.js and Firestore.

- 1a. [optional] Fork the project
- 1b. Clone the project (or your fork if you did step 1) with `git clone {GITHUB_REPO_URL}`
Expand All @@ -26,3 +26,13 @@ This is a game platform developed using Angular framework with Node and Firestor
- 2b. Navigate from the project directory in the **functions** directory with `cd functions`
- 3b. Install sub project dependencies with `npm install`
- 4b. ...

### Launch to Production

* For the Firebase App Configuration
- Goto https://console.firebase.google.com
- Create a new or use an existing project
- Go to "Project Overview" and Add a "Web App" call this as you please for example; `CodeMortals Development`
- This will provide the required settings you can copy into your local environment file.
* In `hosting/environments/`, you will find two files, one for a local/staging Firebase instance, and one for production.
- Ensure you do not commit this to a GitHub Repository.
4,131 changes: 0 additions & 4,131 deletions functions/package-lock.json

This file was deleted.

5 changes: 1 addition & 4 deletions functions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,8 @@
},
"private": true,
"main": "lib/index.js",
"engines": {
"node": "10"
},
"dependencies": {
"firebase-admin": "9.3.0",
"firebase-admin": "^9.11.1",
"firebase-functions": "3.11.0"
},
"devDependencies": {
Expand Down
3,580 changes: 3,580 additions & 0 deletions functions/yarn.lock

Large diffs are not rendered by default.

14,098 changes: 0 additions & 14,098 deletions hosting/package-lock.json

This file was deleted.

10 changes: 5 additions & 5 deletions hosting/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"@angular/common": "10.2.0",
"@angular/compiler": "10.2.0",
"@angular/core": "10.2.0",
"@angular/fire": "6.0.3",
"@angular/fire": "^6.1.5",
"@angular/forms": "10.2.0",
"@angular/platform-browser": "10.2.0",
"@angular/platform-browser-dynamic": "10.2.0",
Expand All @@ -25,18 +25,18 @@
"@fortawesome/free-regular-svg-icons": "5.15.1",
"@fortawesome/free-solid-svg-icons": "5.15.1",
"dompurify": "2.2.0",
"firebase": "7.24.0",
"firebase": "^9.0.0",
"g": "2.0.1",
"marked": "1.2.2",
"marked": "^3.0.2",
"normalize.css": "8.0.1",
"rxjs": "6.6.3",
"tslib": "2.0.3",
"zone.js": "0.11.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.1002.0",
"@angular-devkit/build-angular": "^12.2.3",
"@angular-devkit/build-ng-packagr": "0.1002.0",
"@angular/cli": "10.2.0",
"@angular/cli": "^10.2.3",
"@angular/compiler-cli": "10.2.0",
"@angular/language-service": "10.2.0",
"@types/node": "14.14.5",
Expand Down
Loading