Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thebeyondr/zeta-anime
Testing how bun and Remix works by building an anime site
https://github.com/thebeyondr/zeta-anime
anime bun jikan-api jikan-moe remix-run shadcn-ui tailwindcss
Last synced: 9 days ago
JSON representation
Testing how bun and Remix works by building an anime site
- Host: GitHub
- URL: https://github.com/thebeyondr/zeta-anime
- Owner: thebeyondr
- Created: 2023-10-26T07:25:58.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-27T14:49:02.000Z (about 1 year ago)
- Last Synced: 2024-11-12T15:41:10.681Z (about 1 month ago)
- Topics: anime, bun, jikan-api, jikan-moe, remix-run, shadcn-ui, tailwindcss
- Language: TypeScript
- Homepage:
- Size: 180 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# [-ζ-] zeta
![zeta logo](https://upload.wikimedia.org/wikipedia/commons/thumb/0/0d/Sigle_zeta.png/200px-Sigle_zeta.png)
A test anime app to try [bun](https://bun.sh) and [Remix](https://remix.run)
## Run Locally
Clone the project
```bash
git clone https://github.com/thebeyondr/zeta-anime
```Go to the project directory
```bash
cd zeta-anime
```Get bun
> Follow the steps [here](https://bun.sh/docs/installation) for your OS: `https://bun.sh/docs/installation`
Install dependencies
```bash
bun install
```## Development
From your terminal:
```sh
bun dev
```This starts your app in development mode, rebuilding assets on file changes.
## Deployment
First, build your app for production:
```sh
bun build
```Then run the app in production mode:
```sh
bun start
```Now you'll need to pick a host to deploy it to.
### DIY
If you're familiar with deploying node applications, the built-in Remix app server is production-ready.
Make sure to deploy the output of `remix build`
- `build/`
- `public/build/`