Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/huy-dna/console-cast
A web-based CLI app for school assignment
https://github.com/huy-dna/console-cast
bun nuxt3 postgresql school-project tailwind zapatos
Last synced: 8 days ago
JSON representation
A web-based CLI app for school assignment
- Host: GitHub
- URL: https://github.com/huy-dna/console-cast
- Owner: Huy-DNA
- License: apache-2.0
- Created: 2024-10-07T12:21:12.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2025-01-12T15:26:35.000Z (24 days ago)
- Last Synced: 2025-01-27T23:17:31.083Z (8 days ago)
- Topics: bun, nuxt3, postgresql, school-project, tailwind, zapatos
- Language: TypeScript
- Homepage:
- Size: 3.04 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ConsoleCast
## Techstack
* Fullstack framework: `nuxt`
* DBMS: `PostgreSQL`
* Runtime: `bun`
* Code quality assurance: `eslint`
* Devops: Github Action, `docker`## Development guide
### Setup
```
git config diff.lockb.textconv bun
git config diff.lockb.binary truebun install
bun db:create
bun db:migrate
```### Development
Start the development server on `http://localhost:3000`:
```bash
bun run dev
```Linting:
```bash
bun run lint
bun run lint:fix
```### Production
Build the application for production:
```bash
bun run build
```Locally preview production build:
```bash
bun run preview
```