A template meant to make using solid start quick and easy
https://solid-start.qdev.io
- TypeScript 87%
- CSS 13%
|
Some checks failed
CI / install (18.x) (push) Has been cancelled
CI / install (20.x) (push) Has been cancelled
CI / install (latest) (push) Has been cancelled
CI / build (18.x) (push) Has been cancelled
CI / build (20.x) (push) Has been cancelled
CI / build (latest) (push) Has been cancelled
CI / tsc (18.x) (push) Has been cancelled
CI / tsc (20.x) (push) Has been cancelled
CI / tsc (latest) (push) Has been cancelled
|
||
|---|---|---|
| .github | ||
| .vscode | ||
| public | ||
| src | ||
| .editorconfig | ||
| .gitignore | ||
| .prettierignore | ||
| .prettierrc.json | ||
| package.json | ||
| pnpm-lock.yaml | ||
| README.md | ||
| tsconfig.json | ||
| vite.config.ts | ||
SolidStart
Everything you need to build a Solid project, powered by solid-start;
Creating a project
# create a new project in the current directory
npx degit https://gitea.minionflo.net/NotExisting/solid-start-template
# create a new project in my-app
npx degit https://gitea.minionflo.net/NotExisting/solid-start-template my-app
Developing
Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
Building
Solid apps are built with adapters, which optimise your project for deployment to different environments.
By default, npm run build will generate a Node app that you can run with npm start. To use a different adapter, add it to the devDependencies in package.json and specify in your vite.config.js.