opencode/packages/enterprise
2025-12-23 05:57:23 +00:00
..
public feat: consistent (updated) social share images 2025-12-05 15:42:19 -06:00
src fix(share): expanded state and responsiveness 2025-12-22 10:13:57 -06:00
test/core core: fix share compaction reprocessing same events by making storage list boundaries exclusive 2025-12-01 16:58:59 -05:00
.gitignore Use devinxi-ed Solid Start (#4635) 2025-11-22 10:39:25 -05:00
package.json release: v1.0.191 2025-12-23 05:57:23 +00:00
README.md enterprise (#4617) 2025-11-21 20:41:27 -05:00
sst-env.d.ts zen: glm 4.7 2025-12-22 19:36:07 -05:00
test-debug.ts chore: format code 2025-12-01 21:35:51 +00:00
tsconfig.json ci: ignore 2025-11-23 14:28:10 -05:00
vite.config.ts sync 2025-12-10 23:19:28 -05: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
npm init solid@latest

# create a new project in my-app
npm init solid@latest 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 presets, 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 preset, add it to the devDependencies in package.json and specify in your app.config.js.

This project was created with the Solid CLI