$ 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.
$ 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.
$ 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.
Click HERE to download a sample project.