···11+# SolidStart
22+33+Everything you need to build a Solid project, powered by [`solid-start`](https://start.solidjs.com);
44+55+## Creating a project
66+77+```bash
88+# create a new project in the current directory
99+npm init solid@latest
1010+1111+# create a new project in my-app
1212+npm init solid@latest my-app
1313+```
1414+1515+## Developing
1616+1717+Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
1818+1919+```bash
2020+npm run dev
2121+2222+# or start the server and open the app in a new browser tab
2323+npm run dev -- --open
2424+```
2525+2626+## Building
2727+2828+Solid apps are built with _presets_, which optimise your project for deployment to different environments.
2929+3030+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`.
3131+3232+## This project was created with the [Solid CLI](https://github.com/solidjs-community/solid-cli)