diff --git a/README.md b/README.md index 991cf0f..78cb34c 100644 --- a/README.md +++ b/README.md @@ -63,6 +63,33 @@ ln -sf ../bower_components/oauth3/.well-known/oauth3 .well-known/oauth3 ln -sf ../bower_components/oauth3 assets/org.oauth3 ``` +Example +------- + +If you had a simple website / webapp for `example.com` with only the most necessary files, +it might look like this: + +``` +example.com +│ +│ +├── .well-known +│   └── oauth3 +│   ├── callback.html +│   ├── directives.json +│   └── index.html +├── assets +│   └── org.oauth3 +│   └── oauth3.implicit.js +│ +│ +├── css +│   └── main.css +├── index.html +└── js + └── app.js +``` + Usage -----