Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alswl/excalidraw.alswl.com
excalidraw.alswl.com build from https://github.com/alswl/excalidraw . Static // Support Chinese font // No Collaboration
https://github.com/alswl/excalidraw.alswl.com
excalidraw
Last synced: 1 day ago
JSON representation
excalidraw.alswl.com build from https://github.com/alswl/excalidraw . Static // Support Chinese font // No Collaboration
- Host: GitHub
- URL: https://github.com/alswl/excalidraw.alswl.com
- Owner: alswl
- Created: 2022-10-17T06:27:58.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-11-23T02:02:59.000Z (about 1 year ago)
- Last Synced: 2024-12-13T00:43:08.630Z (9 days ago)
- Topics: excalidraw
- Language: HTML
- Homepage: http://excalidraw.alswl.com/
- Size: 17.9 MB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# excalidraw.alswl.com
Online(no collaboration): https://excalidraw.alswl.com
Feature:
- Chinese font with handwriting style
- Pure staticIf you want own your self-host excalidraw, please check my another project: [alswl/excalidraw-collaboration](https://github.com/alswl/excalidraw-collaboration).
Docs related:
- [Self hosted online collaborative drawing platform Excalidraw | Log4D](https://en.blog.alswl.com/2022/10/self-hosted-excalidraw/)
- [私有化在线协同画图平台 Excalidraw | Log4D](https://blog.alswl.com/2022/10/self-hosted-excalidraw/)Build:
```
# using my forked excalidraw
docker run -it --rm --name excalidraw docker.io/alswl/excalidraw:v0.17.0-fork-b1# open another terminal
docker ps # check running statecd excalidraw.alswl.com
rm -rf public
mkdir public
cd public
docker cp excalidraw:/usr/share/nginx/html/ - > files.tgz # replace your container id
tar xzvf files.tgz
mv html/* .
rmdir html
rm files.tgz
cd ..# check and save your work
git add .
```Run local:
```
cd public
python3 -m http.server# open in another terminal
open 'http://127.0.0.1:8000/'
```Production: hosting in [Cloudflare Pages](https://pages.cloudflare.com/).