{"id":22840993,"url":"https://github.com/mkloubert/simple-whiteboard","last_synced_at":"2025-10-13T13:10:36.902Z","repository":{"id":71664174,"uuid":"123149613","full_name":"mkloubert/simple-whiteboard","owner":"mkloubert","description":"Simple whiteboard (web) application written in PHP.","archived":false,"fork":false,"pushed_at":"2018-03-02T09:40:54.000Z","size":4074,"stargazers_count":5,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-28T10:57:49.729Z","etag":null,"topics":["application","bootstrap3","browser","codemirror","files","font-awesome","gplv3","highlightjs","html5","jquery","less","lodash","markdown","mermaidjs","mysql","php7","showdownjs","typescript","uploads","whiteboard"],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mkloubert.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2018-02-27T15:35:12.000Z","updated_at":"2024-08-08T10:15:30.000Z","dependencies_parsed_at":"2023-03-06T17:15:15.120Z","dependency_job_id":null,"html_url":"https://github.com/mkloubert/simple-whiteboard","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/mkloubert/simple-whiteboard","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mkloubert%2Fsimple-whiteboard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mkloubert%2Fsimple-whiteboard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mkloubert%2Fsimple-whiteboard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mkloubert%2Fsimple-whiteboard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mkloubert","download_url":"https://codeload.github.com/mkloubert/simple-whiteboard/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mkloubert%2Fsimple-whiteboard/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279015283,"owners_count":26085683,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-13T02:00:06.723Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["application","bootstrap3","browser","codemirror","files","font-awesome","gplv3","highlightjs","html5","jquery","less","lodash","markdown","mermaidjs","mysql","php7","showdownjs","typescript","uploads","whiteboard"],"created_at":"2024-12-13T01:14:12.418Z","updated_at":"2025-10-13T13:10:36.894Z","avatar_url":"https://github.com/mkloubert.png","language":"TypeScript","readme":"# simple-whiteboard\n\nSimple whiteboard (web) application written in [PHP](https://php.net).\n\n![Demo 1](https://raw.githubusercontent.com/mkloubert/simple-whiteboard/master/_res/demo1.gif)\n\n## Preview\n\nThis is still a working preview version in a good beta state.\n\n## Download\n\nDownload a release from [here](https://github.com/mkloubert/simple-whiteboard/releases) and unzip it to your webspace folder.\n\n## Install\n\n### Database\n\nRun the [mysql5.dump.sql](https://github.com/mkloubert/simple-whiteboard/blob/master/_res/mysql5.dump.sql) inside the [MySQL](https://www.mysql.com/) database, where the data should be stored.\n\n### Config\n\nEdit the [config.inc.php](https://github.com/mkloubert/simple-whiteboard/blob/master/config.inc.php) and apply your database settings there.\n\n```php\n\u003c?php\n\ndefined('SW_BOOTSTRAP') or die();\n\nreturn array(\n    'database' =\u003e array(\n        'host' =\u003e 'localhost',\n\n        'user' =\u003e 'simple_whiteboard_user',\n        'password' =\u003e 'simple_whiteboard_pwd',\n\n        'db' =\u003e 'simple_whiteboard_db',\n    ),\n);\n\n```\n\nThe following settings are supported:\n\n| Name | Description |\n| ---- | --------- |\n| `database.db` | The database name. |\n| `database.host` | The address of the MySQL host. |\n| `database.password` | The database password. |\n| `database.port` | The custom TCP port. |\n| `database.socket` | The custom UNIX socket. |\n| `database.user` | The database user. |\n\n### Folder permissions\n\nMake the following folders writable for the application:\n\n* `/files`\n* `/uploads`\n\n### .htaccess\n\nIf you use [Apache](https://httpd.apache.org/), you should create a `.htaccess` file like that:\n\n```apache\nAuthType Basic\nAuthName \"My Whiteboard\"\nAuthBasicProvider file\nAuthUserFile \"/etc/apache2/.htpasswd\"\n\n\u003cRequireAny\u003e\n  Require ip 192.168.0.0/255.255.255.0\n  Require valid-user\n\u003c/RequireAny\u003e\n```\n\n## Markdown\n\nThe application uses [showndown](https://github.com/showdownjs/showdown) as [Markdown](https://en.wikipedia.org/wiki/Markdown) engine with the following [options](https://github.com/showdownjs/showdown#valid-options):\n\n```json\n{\n    \"ghCodeBlocks\": true,\n    \"ghCompatibleHeaderId\": true,\n    \"simplifiedAutoLink\": true,\n    \"strikethrough\": true,\n    \"tables\": true\n}\n```\n\n## Shortcuts\n\n| Shortcut | Description |\n| ---- | --------- |\n| `CTRL + B` | Select `Board` tab. |\n| `CTRL + E` | Select `Editor` tab. |\n| `CTRL + S` | Save the current content of editor and show it in board tab. |\n\n## Customizations\n\n### Board name\n\nThe [MySQL dump](https://github.com/mkloubert/simple-whiteboard/blob/master/_res/mysql5.dump.sql) inserts an initial entry in the `boards` table.\n\nThere you can define a custom name in the `name` column.\n\n### Additional boards\n\nYou can add additional boards to `boards` table.\n\nTo access one of these additional boards, simply use the value from `id` column and access them by using `b` query parameter in URL: `https://example.com/whiteboard/?b=\u003cID-OF-THE-BOARD\u003e`.\n\n### CSS\n\nThe [bootstrap.min.css](https://github.com/mkloubert/simple-whiteboard/blob/master/css/bootstrap.min.css) is taken from [Bootswatch](https://bootswatch.com/3/).\nYou can replace it with any of the other templates or another compatible one, like the default one from [Bootstrap 3](https://getbootstrap.com/docs/3.3/).\n\nIf you need additional customizations, you can edit [custom.css](https://github.com/mkloubert/simple-whiteboard/blob/master/css/custom.css) file. \n\n## Support and contribute\n\nIf you like the application, you can support the project by sending a [donation via PayPal](https://paypal.me/MarcelKloubert) to [me](https://github.com/mkloubert).\n\nTo contribute, you can [open an issue](https://github.com/mkloubert/simple-whiteboard/issues) and/or fork this repository.\n\nTo work with the code:\n\n* clone [this repository](https://github.com/mkloubert/simple-whiteboard)\n* create and change to a new branch, like `git checkout -b my_new_feature`\n* commit your changes to your new branch and sync it with your forked GitHub repo\n* make a [pull request](https://github.com/mkloubert/simple-whiteboard/pulls)\n","funding_links":["https://paypal.me/MarcelKloubert"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmkloubert%2Fsimple-whiteboard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmkloubert%2Fsimple-whiteboard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmkloubert%2Fsimple-whiteboard/lists"}