https://github.com/izolate/single-page-app
Basic skeleton to build a single-page app
https://github.com/izolate/single-page-app
Last synced: 10 months ago
JSON representation
Basic skeleton to build a single-page app
- Host: GitHub
- URL: https://github.com/izolate/single-page-app
- Owner: izolate
- License: mit
- Created: 2015-11-01T22:06:33.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-11-01T22:07:43.000Z (over 10 years ago)
- Last Synced: 2025-06-03T23:55:23.124Z (11 months ago)
- Language: JavaScript
- Size: 105 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Single Page App
A basic skeleton to rapidily build out a single-page app. I use this to try out new ideas whenever inspiration strikes.
## Task runner
Before running any tasks, make sure your `.env` file is present with all the correct environment variables. For security's sake, this file isn't committedto the repository. Use the example `.env.example` to make your own file with the correct confidential data.
In development, code will have source maps/debug options, and will watch for file changes:
```
$ gulp build
# To enable file-watching
$ gulp develop
```