Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nickytonline/astro-partykit-starter
https://github.com/nickytonline/astro-partykit-starter
astro partykit react
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/nickytonline/astro-partykit-starter
- Owner: nickytonline
- Created: 2023-12-23T22:16:24.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-21T12:11:31.000Z (2 months ago)
- Last Synced: 2024-10-21T15:24:55.752Z (2 months ago)
- Topics: astro, partykit, react
- Language: TypeScript
- Homepage: https://astro-partykit-react-starter.netlify.app
- Size: 3.08 MB
- Stars: 8
- Watchers: 4
- Forks: 7
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- Code of conduct: CODE-OF-CONDUCT.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Astro Partykit Minimal Starter Kit
This is a minimal starter kit for [Astro](https://astro.build) and [Partykit](https://partykit.io) using [React](https://reactjs.org/).
## 🧞 Commands
All commands are run from the root of the project, from a terminal:
| Command | Action |
| :------------------------ | :----------------------------------------------------------------------------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts local dev server at `localhost:4321` as well as partykit on `localhost:1999` |
| `ntl dev` | Starts Netlify integration along with local dev server at `localhost:8888` as well as partykit on `localhost:1999` |
| `npm run build` | Build your production site to `./dist/` |
| `npm run preview` | Preview your build locally, before deploying |
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
| `npm run astro -- --help` | Get help using the Astro CLI |
| `npm run test` | Run tests with Vitest |If you plan to use Netlify, you need to install the [Netlify CLI](https://docs.netlify.com/cli/get-started/) to run `ntl dev`.
## 👀 Want to learn more about Astro?
Feel free to check [their documentation](https://docs.astro.build) or jump into their [Discord server](https://astro.build/chat).
## 👀 Want to learn more about Partykit?
Feel free to check [their documentation](https://docs.partykit.io/) or jump into their [Discord server](https://discord.gg/KDZb7J4uxJ).
## 🚀 Project Structure
Inside of your Astro project, you'll see the following folders and files:
```text
/
├── public/
├── party/
│ └── index.ts
├── src/
│ └── components/
│ └── Party.tsx
│ └── pages/
│ └── index.astro
│ └── chat/
│ └── index.astro
| └── tests/
│ └── basic.test.ts
└── package.json
```Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
`src/components/` is where components go, Astro/React/Vue/Svelte/Preact components. For this starter project, we're using React, but feel free to switch to your favorite framework.
Any static assets, like images, can be placed in the `public/` directory.
## Deployment
### Setting up Environment Variables
1. Run `npx partykit@latest token generate` to generate a token.
2. Run `ntl env:set PARTYKIT_LOGIN your-username` to add it to the environment variables for Netlify deploys.
3. Run `ntl env:set PARTYKIT_TOKEN THE_GENERATED_SUPER_SECRET_TOKEN` to add it to the environment variables for Netlify deploys.
4. Run `ntl env:set PUBLIC_PARTYKIT_HOST set-your-url-here` so that the production URL for Partykit is available for the deployment._Note_: The `ntl env:set` command is for Netlify deployments only. If you choose to deploy elsewhere, please refer to those particular docs on setting environment variables for your application.
### Deploy to Netlify
The project is configured to deploy to Netlify. For more information on deploying to Netlify, see [A Step-by-Step Guide: Deploying on Netlify](https://www.netlify.com/blog/2016/09/29/a-step-by-step-guide-deploying-on-netlify/).
If you'd like to deploy via the Netlify CLI, you can run the following commands:
```bash
npm install netlify-cli -g # Install the Netlify CLI
netlify init # Connect your project to Netlify
netlify deploy --build # Deploy your site add --prod for production
```### Deploy to Partykit
For the Partykit side of things, you can use the [Partykit CLI](https://docs.partykit.io/reference/partykit-cli/).
```bash
npx partykit deploy
```For more information see their [documentation](https://docs.partykit.io/guides/deploying-your-partykit-server).