Skip to content

foxbunny/create-coffee

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CoffeeScript & Compass Project Template

This web project has the following setup:

  • coffee/ - CoffeeScript sources
    • app.coffee - the top-level config script source
    • app/ - the directory to store project-specific sources
  • sass/ - Compass/SCSS sources
  • www/ - the web assets for the project
    • index.html - the entry point into the app.
    • js/
      • app.js - the top-level config script used by index.html
      • app/ - the directory to store project-specific scripts.
      • lib/ - the directory to hold third party scripts.
    • css/ - the directory to hold compiled CSS
  • tools/ - the build tools to optimize the project.
    • build.js - build configuration
    • proxy.json - development server configuration
    • compass.rb - Compass configuration

Before you start

Please install the development tools using npm in the project directory:

npm install

Volo must be installed globally:

npm install -g volo

Adding third-party libraries

To add third-party libraries use the volo add command.

Do not manually copy dependencies into www/js/lib.

Starting the development server

To start the server run:

volo serve

Building the project

To optimize, run:

volo build

This will run the "build" command in the volofile that is in this directory.

That build command creates an optimized version of the project in a www-built directory. The js/app.js file will be optimized to include all of its dependencies.

About

CoffeeScript & Compass Project Template

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published