Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gauben/boochat
👻 Chat and play at the same time
https://github.com/gauben/boochat
prisma svelte sveltekit
Last synced: 10 days ago
JSON representation
👻 Chat and play at the same time
- Host: GitHub
- URL: https://github.com/gauben/boochat
- Owner: GauBen
- License: mit
- Created: 2021-08-21T15:07:12.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-07T05:03:58.000Z (over 1 year ago)
- Last Synced: 2024-10-12T13:35:41.913Z (26 days ago)
- Topics: prisma, svelte, sveltekit
- Language: TypeScript
- Homepage:
- Size: 3.79 MB
- Stars: 3
- Watchers: 1
- Forks: 2
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Boochat
## Try it!
```bash
# Clone and run
git clone https://github.com/GauBen/boochat.git
cd boochat
docker-compose up
```## Development
```bash
# Install the dependencies
yarn install# Prepare the environment (create and populate an sqlite database)
cp .env.example .env
yarn prisma db push
yarn prisma db seed# Start the development server
yarn dev
```## Production
Customize the `.env` file, create and populate the database (`yarn prisma db push && yarn prisma db seed`) and run `docker-compose up`.
If you want to run Boochat on bare metal instead of docker, run `yarn build && yarn start`.