https://github.com/timxor/sing_along_karaoke
sing along with your favorite song. all you need is a youtube url!
https://github.com/timxor/sing_along_karaoke
karaoke karaoke-application karaoke-maker karaoke-player sing
Last synced: 3 months ago
JSON representation
sing along with your favorite song. all you need is a youtube url!
- Host: GitHub
- URL: https://github.com/timxor/sing_along_karaoke
- Owner: timxor
- License: mit
- Created: 2024-01-09T17:02:35.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-12T04:31:17.000Z (about 1 year ago)
- Last Synced: 2024-04-14T12:59:28.982Z (about 1 year ago)
- Topics: karaoke, karaoke-application, karaoke-maker, karaoke-player, sing
- Language: Dockerfile
- Homepage: https://github.com/timxor/sing_along_karaoke
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sing_along_karaoke
### project details
name: sing_along_karaoke
description: sing along with your favorite song. all you need is a youtube url!
url: https://example.com
repo: https://github.com/timxor/sing_along_karaoke
### project structure
#### frontend
The frontend is accessible on port 3000.
```
frontend/
- TypeScript
- React
```#### backend
The backend is accessible on port 8000.
```
backend/
- Python
- FastAPI
- PostgreSQL
- Docker
```### build and run the docker containers
build and run the frontend container:
```
cd /frontend
docker build -t my-frontend .
docker run -d -p 3000:3000 --name frontend-container my-frontend
```build and run the backend container:
```
cd /backend
docker build -t my-backend .
docker run -d -p 8000:8000 --name backend-container my-backend
```### start docker compose
start docker compose:
```
cd sing_along_karaoke/
docker-compose up
```### issues
```
- typescript build system
- docker file
```