-
Notifications
You must be signed in to change notification settings - Fork 0
itsliamegan/serve
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
fileserver ========== Make a directory and its descendants available via HTTP. Usage - CLI ----------- $ serve # serve the current directory on port 4000 $ serve -port 3000 # serve the current directory on port 3000 $ serve documents/ # serve the "documents/" directory on port 4000 Run `serve -h` for more information. Usage - Go ---------- package main import ( "github.com/itsliamegan/serve" ) func main() { serve.Start(".", ":4000") } Installation ------------ 1. `git clone` the repository 2. Run `make` in the repository's directory 3. Use the newly-created `serve` binary
About
Make a directory and its descendants available via HTTP