-
- Downloads
Basic client template
parents
No related branches found
No related tags found
Showing
- .gitignore 15 additions, 0 deletions.gitignore
- Procfile 1 addition, 0 deletionsProcfile
- app.js 288 additions, 0 deletionsapp.js
- app.yaml 14 additions, 0 deletionsapp.yaml
- package-lock.json 0 additions, 0 deletionspackage-lock.json
- package.json 23 additions, 0 deletionspackage.json
- public/background.jpg 0 additions, 0 deletionspublic/background.jpg
- public/game.js 40 additions, 0 deletionspublic/game.js
- public/main.css 45 additions, 0 deletionspublic/main.css
- views/footer.ejs 16 additions, 0 deletionsviews/footer.ejs
- views/header.ejs 17 additions, 0 deletionsviews/header.ejs
- views/index.ejs 23 additions, 0 deletionsviews/index.ejs
.gitignore
0 → 100644
Procfile
0 → 100644
app.js
0 → 100644
app.yaml
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | |||
"name": "ecsterminate", | |||
"version": "1.0.0", | |||
"description": "ECS Example Game", | |||
"main": "app.js", | |||
"engines": { | |||
"node": "16.x" | |||
}, | |||
"scripts": { | |||
"start": "node app.js", | |||
"gdeploy": "gcloud app deploy --version test", | |||
"hdeploy": "git push heroku master", | |||
"test": "echo \"Error: no test specified\" && exit 1" | |||
}, | |||
"author": "Oli Bills", | |||
"license": "Apache-2.0", | |||
"dependencies": { | |||
"ejs": "^3.1.6", | |||
"express": "^4.17.1", | |||
"pug": "^3.0.2", | |||
"socket.io": "^4.3.1" | |||
} | |||
} |
public/background.jpg
0 → 100644
113 KiB
public/game.js
0 → 100644
public/main.css
0 → 100644
views/footer.ejs
0 → 100644
views/header.ejs
0 → 100644
views/index.ejs
0 → 100644