https://github.com/devilrancy/html5-mobile-skeleton
A basic skeleton for mobile html5 apps.
https://github.com/devilrancy/html5-mobile-skeleton
Last synced: 3 months ago
JSON representation
A basic skeleton for mobile html5 apps.
- Host: GitHub
- URL: https://github.com/devilrancy/html5-mobile-skeleton
- Owner: devilrancy
- Created: 2014-09-14T06:34:46.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2013-10-14T01:17:51.000Z (over 11 years ago)
- Last Synced: 2025-04-15T23:08:44.682Z (3 months ago)
- Size: 2.66 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
HTML5 Mobile Skeleton
=====================A skeleton for mobile HTML5 apps. Ready-to-go webroot directory, intended to get things started fast.
## Features
* Static *.html templates
* SLIM PHP app templates
* Support for require.js
* Support for SASS and LESS
* Support for Composer
* Support for Bower
* Some pre-configured Grunt tasks## Setup
This repository features a basic HTML-only skeleton as well as a simple [SLIM PHP](https://github.com/codeguy/Slim) app with [Twig](https://github.com/fabpot/Twig) templates. To install [Composer](https://getcomposer.org/) and all dependencies run
```bash
curl -sS https://getcomposer.org/installer | php
php composer.phar install
```To make your life even easier and use the [Grunt](http://gruntjs.com/) tasks that come with this app skeleton (concat and uglify JavaScript files, watch and compile SCSS files, compile LESS) make sure to install the required node.js modules like so:
```bash
npm install
```Finally, if you want to use require.js you can fetch it via Bower:
```bash
bower install
```There's also a neat installer script that does all that dumb work for you and installs everything at once:
```bash
sh install.sh
```