KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#deepseek-harness
#dsh-plugin
#open-source
#ai
#cli
#dsh
#claude-code
#codex
#developer-tools
#react
dioxus-vercel-demo
★ 29
Open GitHub ↗
Deploy dioxus-web to Vercel.
Download README (.md)
Explore Similar Repositories
nextjs-vercel-aws-cdk-example
:
Example Next.js project deployed on Vercel with AWS services for database, cron jobs and asynchronous jobs
vercel-php-clearkey-hex-base64-json
:
Convert Key ID & Key in Hex to Base64 for ClearKeys DRM in JSON form with deployment on Vercel
fastapi-vercel
:
A FastAPI example app deployed on Vercel
astroblog
:
Personal Astro blog edited through self-hosted Pages CMS and deployed on Vercel.
vercel-deploy-payload-postgres
:
One-click deployment template of Payload 3.0 on Vercel
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
dioxus-vercel-demo
?
Download (.md)
# Dioxus demo This demo shows how to use [Dioxus](https://github.com/DioxusLabs/dioxus) to build a static web application and deploy it to Vercel. ## Local development To run the demo locally, you would need the Rust toolchain and `trunk` installed. Then you can simply run: ```bash trunk serve ``` And you can visit the demo at `http://localhost:8080` (or aother port if you have specified some using `trunk serve --port <port>`). ## Build for production To build for production, you can simply run: ```bash trunk build --release ``` The default output path is `./dist`. ## Deploy to Vercel To deploy the application to vercel, you would need to first run `vercel` locally to get the `PROJECT_ID` and `ORG_ID` from the generated `./vercel/project.json` file. Then you need to set up the following secrets in your GitHub repo: - `PROJECT_ID` - `ORG_ID` - `VERCEL_TOKEN` You can modify `vercel.json` to specify your alias. Then you can deploy the application to Vercel via your GitHub workflow.