Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yookoala/static-dev-boilerplate
https://github.com/yookoala/static-dev-boilerplate
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/yookoala/static-dev-boilerplate
- Owner: yookoala
- Created: 2015-07-09T08:03:51.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-08-08T02:12:46.000Z (over 8 years ago)
- Last Synced: 2024-10-23T22:49:51.388Z (about 2 months ago)
- Language: JavaScript
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
README
======This is a simple boilerplate for sass + jade + typescript(maybe) development
Setup
-----
After cloning this repository, you should run the following commands.npm install
Build Your Site
---------------
The folder `public` is supposed to be the document root of your site.
The structure goes like this:- public/ (folder to put HTML)
- styles/ (folder to put .css)
- scripts/ (folder to put javascripts assets)
- src/ (folder to put .jade files)
- styles/ (folder to put .sass, .scss)
- scripts/ (folder to put .js, .jsx, .ts scripts)You can create your own files inside `public`. This bolierplate is to
help those who wants to develop their site in sass, jade or other language
instead of plain HTML and CSS. So apparently you can develop scripts and
styles in the `src` folder and have `gulp` to build the files for you.Development
-----------
You may start a development server with this:npm run dev
The development site should be on [http://localhost:8080](localhost:8080).