This is a Brunch-based boilerplate that can be used as a starting point to easily create an app based on 999.css and ZenQRXT library stack.
- Install Brunch:
sudo npm install -g brunch - Create a new project based on this skeleton:
brunch n MyApp -s plugnburn/z9-kickstart - Enter project directory:
cd MyApp - Run a debug server:
brunch w --server
- Startup file:
app/startup.js - XT templates dir:
app/templates/ - Actions dir:
app/actions/ - Custom styles dir:
app/css/ - HTML entry point:
app/assets/index.html
When you're ready, just run brunch b -p or npm run build to make a production build and then copy everything out of public directory in your project.
You can also use built-in deployment to Surge hosting:
- fill the
configsection ofpackage.jsonwith your desired domain (or.surge.shsubdomain) under thedomainkey; - execute
npm run deploy.
To unhost your project from Surge, just run npm run undeploy.