Skip to content

Commit

Permalink
Updated command line docs
Browse files Browse the repository at this point in the history
  • Loading branch information
dileping committed Mar 6, 2016
1 parent e705ca4 commit 0791ef5
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Expand Up @@ -37,6 +37,7 @@ First make sure, please, you have followed the [installation](#installation) sec
```sh
swift-express init HelloExpress
cd HelloExpress
swift-express bootstrap
open HelloExpress.xcodeproj
```

Expand All @@ -51,6 +52,7 @@ app.get("/myecho") { request in
##### Run from xCode or command line with:

```sh
swift-express build
swift-express run
```

Expand Down
13 changes: 13 additions & 0 deletions doc/gettingstarted/commandline.md
Expand Up @@ -18,6 +18,19 @@ swift-express init YourProject

ant it will create you the whole directory structure along with xCode project.

No you need to fetch and build the dependencies:

```sh
cd YourProject
swift-express bootstrap
```

Build the project:

```sh
swift-express build
```

You can run your project by typing following test while in the project folder:

```sh
Expand Down

0 comments on commit 0791ef5

Please sign in to comment.