[MPL-2] music interface
Go to file
2024-09-15 17:56:40 +02:00
.island [FEAT] many renaming 2024-08-15 11:47:50 +02:00
back [DEV] first vesion of karisic in react + chakra-ui 2024-08-22 11:29:57 +02:00
bdd [DEV] initail code with karideo origin 2022-06-19 19:24:04 +02:00
env_dev [DEV] first vesion of karisic in react + chakra-ui 2024-08-22 11:29:57 +02:00
front [FEAT] basic working karusic 2024-09-15 17:56:40 +02:00
front2 [FEAT] basic working karusic 2024-09-15 17:56:40 +02:00
.checkstyle [DEV] initail code with karideo origin 2022-06-19 19:24:04 +02:00
.gitignore [DEV] initail code with karideo origin 2022-06-19 19:24:04 +02:00
docker-compose.yaml real basic player ... must be upgrade really soon... 2022-07-11 00:00:20 +02:00
Dockerfile [DEV] correct version with some ibrary update 2024-04-13 09:03:05 +02:00
README.md [FEAT] many renaming 2024-08-15 11:47:50 +02:00
version.txt [VERSION] update dev tag version 2024-05-12 12:03:31 +02:00

Karideo

Kangaroo And Rabbit (m)usic is a simple framework to propose music streaming for personal network

Run in local:

so simple...

# start the Bdd interface (no big data > 50Mo)
cd bdd
docker-compose up -d
# start the REST API
cd back
docker-compose up -d
# start the front API
cd ../front
docker-compose up -d

convert in an angular application: https://betterprogramming.pub/how-to-convert-your-angular-application-to-a-native-mobile-app-android-and-ios-c212b38976df

Link:

cd front
pnpm run link_kar_cw

un-link:

cd front
pnpm run unlink_kar_cw

Manual set in production:

Connect on the registry

To log-in and log-out from the registry:

export REGISTRY_ADDRESS=gitea.atria-soft.org
docker login -u <<YOUR_USER_NAME>> ${REGISTRY_ADDRESS}
docker logout ${REGISTRY_ADDRESS}

pull the root image of dockers

docker pull archlinux:base-devel
docker pull bellsoft/liberica-openjdk-alpine:latest

Create the version

Execute in the local folder: (use dev for development and latest for production release)

export TAG_DOCKER=latest
export REGISTRY_ADDRESS=gitea.atria-soft.org
docker build -t ${REGISTRY_ADDRESS}/kangaroo-and-rabbit/karusic:${TAG_DOCKER} .
docker push ${REGISTRY_ADDRESS}/kangaroo-and-rabbit/karusic:${TAG_DOCKER}