solid-start-deno
v0.3.11
Published
## This package is deprecated see [@solidjs/start](https://www.npmjs.com/package/@solidjs/start)
Downloads
199
Readme
solid-start-deno
This package is deprecated see @solidjs/start
Adapter for Solid apps that work on Deno Deploy.
This is very experimental; the adapter API isn't at all fleshed out, and things will definitely change.
Configuration
- Install Deno
- Install Deno Deploy CLI
deno install --allow-read --allow-write --allow-env --allow-net --allow-run --no-check -r -f https://deno.land/x/deploy/deployctl.ts
You also need to add the main entry to your package.json:
Deploy
- Build your app with SolidStart
npm run build
Create a project with
<your-project-name>
name on Deno Deploy.cd dist
Use the Deno Deploy CLI to deploy your app.
$ project/dist > deployctl deploy --prod --project=<YOUR_PROJECT_NAME> --token <YOUR_DENO_DEPLOY_TOKEN> ./index.js