# tiresias-cli

## install
```shell
npm install -g tiresias-cli
```


## create project
```shell
tiresias init your-project-name
```

## develop
```shell
tiresias run dev
```
or 
```shell
tiresias run dev -p 9090
```
dev server will listen 9090 port.

## build
```shell
tiresias run prod
```
or
```shell
tiresias run prod -d ~/Desktop/myproject-dist
```
project will build into ~/Desktop/myproject-dist
