Every year at Mother we have an all-agency ski trip.
This year, we want a responsive site that will work on phones while people are on the slopes. The cell phone coverage there is shit so offline is necessary.
We basically need a schedule of events, phone numbers, etc. Nothing serious and nothing super interactive.
However, we are considering a leaderboard of sorts for some activities, but not a dealbreaker if data is eventually consistent.
Nonetheless, background syncing of sorts and adding to home page is a requirement.
Should be relatively straightforward but didn't want to go reinvent the wheel if a boilerplate exists.
hm, maybe just using the regular hoodie app boilerplate that you get from
hoodie new myapp
(the shitty todo app) is enough to get you going. All you really need is your markup and a<script src="https://server.com/hoodie.js">
where you then can wire up forms / views to thehoodie.store
CRUD methods.For simplicity, you could forego signups and auto-login everyone with the same user ID and password (assuming a private URL on https) and share the same object space with everyone.
This is just me handwaving, I’m waiting for @svnlto, @gr2m and @espy to chime in :)