Link bookmarking tool built on aproto (early alpha)

chore: update readme

finxol.io 9c3479c2 5f0c2f50

verified
+23 -42
+5 -24
README.md
··· 1 - # SolidStart 1 + # Pinboarding 2 2 3 - Everything you need to build a Solid project, powered by [`solid-start`](https://start.solidjs.com); 3 + See this live on [pinboard.ing](https://pinboard.ing)! 4 4 5 - ## Creating a project 6 - 7 - ```bash 8 - # create a new project in the current directory 9 - npm init solid@latest 10 - 11 - # create a new project in my-app 12 - npm init solid@latest my-app 13 - ``` 5 + Everything you need to build a Solid project, powered by [`solid-start`](https://start.solidjs.com); 14 6 15 7 ## Developing 16 8 17 - Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server: 9 + Once you've installed dependencies with `deno install --allow-scripts`, start a development server: 18 10 19 11 ```bash 20 - npm run dev 21 - 22 - # or start the server and open the app in a new browser tab 23 - npm run dev -- --open 12 + deno task dev 24 13 ``` 25 - 26 - ## Building 27 - 28 - Solid apps are built with _presets_, which optimise your project for deployment to different environments. 29 - 30 - 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`. 31 - 32 - ## This project was created with the [Solid CLI](https://github.com/solidjs-community/solid-cli)
+18 -18
package.json
··· 1 1 { 2 - "name": "example-with-unocss", 3 - "type": "module", 4 - "scripts": { 5 - "dev": "vinxi dev", 6 - "build": "vinxi build", 7 - "start": "vinxi start" 8 - }, 9 - "dependencies": { 10 - "@solidjs/router": "^0.15.0", 11 - "@solidjs/start": "^1.1.0", 12 - "@unocss/reset": "^0.65.1", 13 - "solid-js": "^1.9.5", 14 - "unocss": "^0.65.1", 15 - "vinxi": "^0.5.7" 16 - }, 17 - "engines": { 18 - "node": ">=22" 19 - } 2 + "name": "example-with-unocss", 3 + "type": "module", 4 + "scripts": { 5 + "dev": "vinxi dev", 6 + "build": "vinxi build", 7 + "start": "vinxi start" 8 + }, 9 + "dependencies": { 10 + "@solidjs/router": "^0.15.0", 11 + "@solidjs/start": "^1.1.0", 12 + "@unocss/reset": "^0.65.1", 13 + "solid-js": "^1.9.5", 14 + "unocss": "^0.65.1", 15 + "vinxi": "^0.5.7" 16 + }, 17 + "engines": { 18 + "node": ">=22" 19 + } 20 20 }