Welcome to Turbo


You are currently looking at the index.html file of your project. You mostly likely want to remove the contents of this page and replace it with your project home page. But before you do, use the following tips to get started:

Run Development Server

$ turbo devserver

It is best to develop while running the development server because it mimics Turbo's live and staging environments. After starting the dev server, navigate to http://localhost:3000 to view the project.

Add a Page

$ turbo page PAGE_NAME

This command adds a new html file with the PAGE_NAME specified. You can also do this the old-fasioned way ($ touch PAGE_NAME.html) but by using the Turbo command, the new page will automatically be configured with the Turbo SDK and prepared for deployment.

Build the Project

(In a separate terminal tab)
$ sudo npm i -g gulp
$ gulp

Turbo projects are automatically configured for minified asset delivery through Gulp. If you already have Gulp installed globally, the first command is not necessary. By running gulp in a separate tab, the project will automatically recompile whenever there are changes to the JS and CSS assets.

Sample Project

Click HERE to download a sample project.