diff --git a/README.md b/README.md index a84af39..36b6700 100644 --- a/README.md +++ b/README.md @@ -1,32 +1,14 @@ -# SolidStart +# Mbin Website -Everything you need to build a Solid project, powered by [`solid-start`](https://start.solidjs.com); +## Contributing -## Creating a project +This website is built with [Solid.js](https://www.solidjs.com), [SolidUI](https://www.solid-ui.com), and [Tailwind CSS](https://tailwindcss.com). + +Once you've cloned the repo and installed dependencies with `pnpm install`, start a development server: ```bash -# 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: - -```bash -npm run dev +pnpm dev # or start the server and open the app in a new browser tab -npm run dev -- --open +pnpm 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](https://solid-cli.netlify.app) diff --git a/package.json b/package.json index 35266cd..731b381 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "mbin-website", "type": "module", "scripts": { - "dev": "vinxi dev", + "dev": "pnpm run initdata && vinxi dev", "build": "pnpm run initdata && vinxi build", "start": "vinxi start", "initdata": "node ./src/initdata.js" diff --git a/public/favicon.ico b/public/favicon.ico index fb282da..2860e0d 100644 Binary files a/public/favicon.ico and b/public/favicon.ico differ