A slide-based tool for creating stop motion animations and slides with Excalidraw
🎥 Watch Demo | 🚀 Try Inscribed | Feedback
- 🎨 Interactive drawing canvas powered by Excalidraw
- ⌨️ Keyboard shortcuts support
- Copy/Paste/Duplicate functionality
- Navigation with Up/Down arrows
- Delete items
- 📏 Customizable document size
- 🖼️ Image import and manipulation
- 🔤 Google Fonts integration
- 🎭 Presentation mode for slideshows
- 📤 Export presentations as GIF
- 💾 Export/Import data functionality
- 🔗 Embed support via iframe, hosted on Gist
- Fork the repository
- Clone your fork:
git clone https://github.com/YOUR_USERNAME/inscribed.git
- Create a new branch:
git checkout -b feature/your-feature-name
- Install dependencies:
pnpm install
- Start the development server:
pnpm dev
# Start the development server
docker compose up dev
# Or build and run in one command
docker compose up dev --build
After running either of these commands, open your browser and navigate to:
http://localhost:5173
To use a different port (e.g., 3000), change the first number in the port mapping in docker-compose.yml:
# Edit the docker-compose.yml file, changing "5173:5173" to "3000:5173"
Then access the development server at http://localhost:<HOST_PORT>
.
# Build and start the production server
docker compose up prod --build -d
# Or use Docker directly
docker build -t inscribed:latest .
docker run -p 8888:80 inscribed:latest
After running either of these commands, open your browser and navigate to:
http://localhost:8888
To use a different port (e.g., 3000), change the first number in the port mapping:
# Using docker-compose
# Edit the docker-compose.yml file, changing "8888:80" to "3000:80"
# Using Docker directly
docker run -p 3000:80 inscribed:latest
- Clone the repository:
git clone https://github.com/chunrapeepat/inscribed.git
- Build the Docker image:
docker build -t inscribed:latest .
- Run the container:
docker run -d -p 8888:80 inscribed:latest
The application will be available at http://localhost:8888
or your server's IP/domain on port 8888.
To customize the port, change the host port mapping in the docker run command:
# Format: docker run -d -p <HOST_PORT>:80 inscribed:latest
# Example for port 9000:
docker run -d -p 9000:80 inscribed:latest
Then access the application at http://localhost:<HOST_PORT>
.
-
[12/5/2025] v1.1.1 - minor improvements for animation recording usecase
-
[25/4/2025] v1.1.0 - export as video, integrate excalidraw-animate
-
[24/4/2025] v1.0.7 - fix all reported bugs on Github issues
-
[26/3/2025] v1.0.6 - raw gist url supported, drag and drop to import, cmd/ctrl + s shortcut for export, minor ux improvements.
-
[25/3/2025] v1.0.5 - fix bugs, minor improvements
-
[12/3/2025] v1.0.4 - preview GIF, import directly from Gist, make share url shorter
-
[12/3/2025] v1.0.3 - swipe down to exit presentation, multi-select preview items, improve pref
-
[11/3/2025] v1.0.2-hotfix - support gist with multiple files, shareable url
-
[23/2/2025] v1.0.2 - slide bar ux improvement
-
[16/2/2025] v1.0.1 - ux improvement and indexeddb migration
-
[11/2/2025] v1.0.0 - launch an MVP
- shortcuts: copy/paste, up/down/delete
- integrated google fonts
- export: gif, iframe embed
- full-screen presentation mode
Crafted with 🧡 by @chunrapeepat