An open API service indexing awesome lists of open source software.

https://github.com/ripta/safron

Quick-and-dirty static file web server — no, no, I assure you, it's not "saffron"
https://github.com/ripta/safron

Last synced: 24 days ago
JSON representation

Quick-and-dirty static file web server — no, no, I assure you, it's not "saffron"

Awesome Lists containing this project

README

        

# safron

[![Build Status](http://drone.app.armada.routed.cloud/api/badges/ripta/safron/status.svg)](http://drone.app.armada.routed.cloud/ripta/safron)

Quick-and-dirty static file web server, which you can obtain from
[the releases page](https://github.com/ripta/safron/releases), or
build it yourself:

```
$ brew install go
$ go get github.com/ripta/safron
```

By default, it make the current working directory available on port 8080. More
options are available through `-h`.

Example:

```
$ pwd
/Users/rpasay/Public
$ safron
2015/10/27 17:24:13 Safron version 1
2015/10/27 17:24:13 Listening to http://0.0.0.0:8080
2015/10/27 17:24:13 Serving /Users/rpasay/Public
2015/10/27 17:24:13 ^C to exit
```