Skip to content

Commit

Permalink
update to solid-start 0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Lohr committed Jan 5, 2024
1 parent f7bbd67 commit ccc0551
Show file tree
Hide file tree
Showing 19 changed files with 5,230 additions and 9,344 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
BASE_PATH: /solid-cheat-sheet/

- name: deploy pages
uses: JamesIves/github-pages-deploy-action@v4.4.1
uses: JamesIves/github-pages-deploy-action@v4.5.0
with:
branch: gh-pages # The branch the action should deploy to.
folder: dist/public # The folder the action should deploy.
folder: dist/public # The folder the action should deploy.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ worker
.output
.vercel
.netlify
.vinxi

# dependencies
/node_modules
Expand Down
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
# SolidStart

Everything you need to build a Solid project, powered by [`solid-start`](https://github.com/ryansolid/solid-start/tree/master/packages/solid-start);
Everything you need to build a Solid project, powered by [`solid-start`](https://start.solidjs.com);

## Creating a project

```bash
# create a new project in the current directory
npm init solid@next
npm init solid@latest

# create a new project in my-app
npm init solid@next my-app
npm init solid@latest my-app
```

> Note: the `@next` is temporary
## Developing

Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
Expand All @@ -29,4 +27,4 @@ npm run dev -- --open

Solid apps are built with _adapters_, which optimise your project for deployment to different environments.

By default, `npm run build` will generate a Node app that you can run with `node build`. To use a different adapter, add it to the `devDependencies` in `package.json` and specify in your `vite.config.js`.
By default, `npm run build` will generate a Node app that you can run with `npm start`. To use a different adapter, add it to the `devDependencies` in `package.json` and specify in your `vite.config.js`.
Loading

0 comments on commit ccc0551

Please sign in to comment.