Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zalun/school-plan-app
Stage by stage - creating a school plan app
https://github.com/zalun/school-plan-app
Last synced: 4 months ago
JSON representation
Stage by stage - creating a school plan app
- Host: GitHub
- URL: https://github.com/zalun/school-plan-app
- Owner: zalun
- License: mpl-2.0
- Created: 2014-09-01T09:25:53.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2020-07-28T12:09:18.000Z (over 4 years ago)
- Last Synced: 2024-08-01T19:37:23.421Z (7 months ago)
- Language: JavaScript
- Size: 2.8 MB
- Stars: 135
- Watchers: 10
- Forks: 72
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
School Plan app
===============Stage by stage - creating a school plan app
https://hacks.mozilla.org/2014/10/creating-a-mobile-app-from-a-simple-html-site/
Defining a problem
------------------Ability to check the school plan of kids even when offline.
Solution
--------An app able to display a table with the school plan
To see the Stage[X]
-------------------Clone the repository
git clone [email protected]:zalun/school-plan-app.git
Create a cordova app
cd school-plan-app
cordova create school-plan com.mozillacordova.schoolplan SchoolPlanRemove the ``www`` directory and replace it with ``stage[X]``
cd school-plan
rm -rf www
ln -fs ../stage[x] wwwAdd a platform
cordova platform add [firefoxos/ios/android/...]
Application will be exported into ```school-plan/platforms/[platform_name]/www/```
Since app is using Brick please test it on an emulator or machine. It will work in the browser only if served from a server.
One can find more information about working with cordova project at
http://cordova.apache.org/docs/en/edge/index.html