-
Notifications
You must be signed in to change notification settings - Fork 4
Getting Started
chsbe edited this page May 17, 2016
·
22 revisions
The starting point of any Hot application is the hot command line tool provided with the Hot binary distribution.
To start programming with Hot, just follow these steps:
- Download the Hot distribution here
- Untar it somewhere on your hard drive
- Add the following entry to your
.profilefileexport PATH=</path/to/hot/distribution>/bin:$PATH - Have fun!
Now you are ready to start you first Hot project
To create a project just enter the following command
hot create -n myproject
You now have a folder called myprojectwith the following directory structure:
+myproject
|\-www
|\-shows
to start your app, just tap
hot run
open you favourite web browser and go to http://locahost:8080
the wwwdirectory is where you can put all your static web resources and assets. Each asset is exposed by the Hot web server.
This folder is where you put the showscripts (see here)