opencode/packages/enterprise
Dax Raad bf316018d7 core: enable enterprise-managed session sharing with configurable enterprise URLs
When an enterprise URL is configured, session shares now route through the enterprise API instead of the public API, allowing organizations to manage session sharing infrastructure on their own servers.
2025-11-21 19:53:55 -05:00
..
public opencode enterprise 2025-11-21 08:56:50 -06:00
src core: enable enterprise-managed session sharing with configurable enterprise URLs 2025-11-21 19:53:55 -05:00
.gitignore opencode enterprise 2025-11-21 08:56:50 -06:00
app.config.ts wip: migrate session-timeline component 2025-11-21 08:58:32 -06:00
package.json deps: move luxon types to catalog 2025-11-21 09:02:08 -06:00
README.md opencode enterprise 2025-11-21 08:56:50 -06:00
tsconfig.json opencode enterprise 2025-11-21 08:56:50 -06: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