# Examples generate command ## Running methods ### Build and run each time ```sh $ cd $GOPATH/src/github.com/kataras/iris/internal/cmd $ go run main.go gen website examples >> recipe_content.html ``` ### Using an executable ```sh $ cd $GOPATH/src/github.com/kataras/iris/internal/cmd $ go build # rename the binary, executable file, to something like "iris" or "iris.exe" for win # copy it to your systems folder or to the $GOPATH/bin ``` And use that command instead: ```sh $ iris gen website examples >> recipe_content.html ``` > That executable can be copied and used anywhere. ## Action This command should write to the argument output `>>` or print to the `os.Stdout` something like this: ```html

Beginner

Hello World



    

Overview



    

Internal Application File Logger



    

Write JSON



    

Read JSON



    

Read Form



    

Favicon



    

File Server



    

Send Files



    

Stream Writer



    

Listen UNIX Socket



    

Listen TLS



    

Listen Letsencrypt (Automatic Certifications)



    

Intermediate

Send an email



    

Upload/Read Files



    

Request Logger



    

Profiling (pprof)



    

Basic Authentication



    

HTTP Access Control



    

Cache Markdown



    

Localization and Internationalization



    

Recovery



    

Graceful Shutdown



    

Custom TCP Listener



    

Custom HTTP Server



    

Password Hashing



    

Flash Messages



    

Advance

Transactions



    

HTTP Testing



    

Watch & Compile Typescript source files



    

Cloud Editor



    

Online Visitors



    

URL Shortener using BoltDB


```