diff --git a/README.md b/README.md
index 1755288..64db8ed 100644
--- a/README.md
+++ b/README.md
@@ -1,37 +1,39 @@
-
-
-
+# Expose
-
-
-
-
-
-
-
+## Usage
- This is a community project and not an official Laravel one
+## Server
-Laravel Zero was created by, and is maintained by [Nuno Maduro](https://github.com/nunomaduro), and is a micro-framework that provides an elegant starting point for your console application. It is an **unofficial** and customized version of Laravel optimized for building command-line applications.
+To start the server, call:
-- Built on top of the [Laravel](https://laravel.com) components.
-- Optional installation of Laravel [Eloquent](https://laravel-zero.com/docs/database/), Laravel [Logging](https://laravel-zero.com/docs/logging/) and many others.
-- Supports interactive [menus](https://laravel-zero.com/docs/build-interactive-menus/) and [desktop notifications](https://laravel-zero.com/docs/send-desktop-notifications/) on Linux, Windows & MacOS.
-- Ships with a [Scheduler](https://laravel-zero.com/docs/task-scheduling/) and a [Standalone Compiler](https://laravel-zero.com/docs/build-a-standalone-application/).
-- Integration with [Collision](https://github.com/nunomaduro/collision) - Beautiful error reporting
+```
+php expose serve
+```
-------
+## Client
-## Documentation
+To share local connections with a server, call:
-For full documentation, visit [laravel-zero.com](https://laravel-zero.com/).
+```
+php expose share somelocalsite.test
+```
-## Support the development
-**Do you like this project? Support it by donating**
+### Custom subdomain(s)
+You can also define a custom subdomain using the `--subdomain` option:
-- PayPal: [Donate](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L)
-- Patreon: [Donate](https://www.patreon.com/nunomaduro)
+```
+php expose share somelocalsite.test --subdomain=custom
+```
-## License
+The subdomain option also allows you to specify multiple, comma-separated subdomains:
-Laravel Zero is an open-source software licensed under the [MIT license](https://github.com/laravel-zero/laravel-zero/blob/stable/LICENSE.md).
+```
+php expose share somelocalsite.test --subdomain=app,admin
+```
+
+### Basic authentication
+You can protect your shared URLs using basic authentication, by providing the username and password in the `--auth` option:
+
+```
+php expose share somelocalsite.test --auth="username:password"
+```