Skip to content

Commit

Permalink
PWA stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-thepie committed Sep 24, 2024
1 parent debf8f1 commit e080e4e
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
DS_Store
.DS_Store
node_modules
18 changes: 17 additions & 1 deletion docs/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"start_url": ".",
"display": "standalone",
"background_color": "#FFF",
"description": "`A list of all induction week events for School of Computing Courses.",
"description": "A list of all induction week events for School of Computing Courses.",
"icons": [
{
"src": "512.png",
Expand All @@ -16,5 +16,21 @@
"sizes": "192x192",
"type": "image/png"
}
],
"screenshots": [
{
"src": "ss-wide.png",
"sizes": "2176x1334",
"type": "image/png",
"form_factor": "wide",
"label": "Homescreen of the Induction App"
},
{
"src": "ss-tall.png",
"sizes": "812x1826",
"type": "image/png",
"form_factor": "tall",
"label": "Induction Timetable on Mobile"
}
]
}
Binary file added docs/ss-tall.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/ss-wide.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion index.js → svr.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import express from 'express';

const app = express();
app.use(express.static('docs'));
app.use('/induction', express.static('docs'));
app.listen(8080);

0 comments on commit e080e4e

Please sign in to comment.