opencode/packages/enterprise
Dax b7fab49b64
refactor(snapshot): store unified patches in file diffs (#21244)
Co-authored-by: Adam <2363879+adamdotdevin@users.noreply.github.com>
2026-04-07 19:48:23 -04:00
..
public fix(web): favicon rename again 2026-01-21 14:52:21 -06:00
script admin unshare 2026-01-12 14:20:33 -05:00
src refactor(snapshot): store unified patches in file diffs (#21244) 2026-04-07 19:48:23 -04:00
test/core share: speed up share loads (#16165) 2026-03-06 06:49:15 -06:00
.gitignore Use devinxi-ed Solid Start (#4635) 2025-11-22 10:39:25 -05:00
README.md enterprise (#4617) 2025-11-21 20:41:27 -05:00
package.json release: v1.3.17 2026-04-06 07:39:18 +00:00
sst-env.d.ts go: support coupon 2026-04-07 10:09:00 -04: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

README.md

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