A template meant to make using solid start quick and easy https://solid-start.qdev.io
  • TypeScript 87%
  • CSS 13%
Find a file Use this template
N0tExisting 0dc6c50053
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
Just Fucking work please
2023-11-30 12:53:22 +01:00
.github Just Fucking work please 2023-11-30 12:53:22 +01:00
.vscode Add Issue Templates 2023-11-30 12:41:18 +01:00
public Inital Commit 2023-11-28 16:06:13 +01:00
src Refactor & add Middleware 2023-11-30 12:04:43 +01:00
.editorconfig Add Prettier 2023-11-28 19:06:20 +01:00
.gitignore Inital Commit 2023-11-28 16:06:13 +01:00
.prettierignore Add Prettier 2023-11-28 19:06:20 +01:00
.prettierrc.json Add Prettier 2023-11-28 19:06:20 +01:00
package.json Run formating 2023-11-28 19:06:37 +01:00
pnpm-lock.yaml Add Prettier 2023-11-28 19:06:20 +01:00
README.md Add Propper instructions for cloning the template 2023-11-29 08:41:44 +01:00
tsconfig.json Add CI 2023-11-30 12:13:36 +01:00
vite.config.ts Run formating 2023-11-28 19:06:37 +01:00

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.