Notation
15 |You are logged in as {{ .user.Email }}.
16 |In the future, your drawings will be shown here.
17 | 18 |Here is a fresh new URL (click to copy):
20 | 21 | 22 |24 | Logout 25 |
├── debug.yaml ├── deploy.yaml ├── templates ├── base.html ├── drawing.html ├── index_user.html └── index_public.html ├── .gitignore ├── index.yaml ├── static ├── script_user.js ├── page_style.css ├── drawing_style.css └── script.js ├── README.md ├── main.go └── LICENSE /debug.yaml: -------------------------------------------------------------------------------- 1 | 2 | runtime: go 3 | api_version: go1 4 | 5 | handlers: 6 | - url: /static 7 | static_dir: static 8 | 9 | - url: /.* 10 | script: _go_app 11 | -------------------------------------------------------------------------------- /deploy.yaml: -------------------------------------------------------------------------------- 1 | 2 | runtime: go111 3 | 4 | handlers: 5 | - url: /static 6 | static_dir: static 7 | expiration: "7d" 8 | 9 | - url: /.* 10 | script: auto 11 | 12 | -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- 1 | {{define "base"}} 2 | 3 | 4 |
5 |You are logged in as {{ .user.Email }}.
16 |In the future, your drawings will be shown here.
17 | 18 |Here is a fresh new URL (click to copy):
20 | 21 | 22 |A simple web app to make drawings that are easy to embed. 16 | Click here for more information and a demo. 17 | Made by Evert Heylen, source available on github.
18 |This was made specifically to fill a shortcoming in Notion.
19 | Use the /embed command and paste the generated URL.
20 | All drawings are visible to anyone who has the URL, but only you can edit them.
Cookie and privacy policy: This service uses cookies and local storage to remember your preferences and authentication info. 22 | The personal information we store is limited to your email address, which we use to authenticate you. If you want all your data deleted or obtain a copy, 23 | please contact the author. 24 |
25 |