Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump up lowest tier audio bitrate #37

Merged
merged 18 commits into from
Feb 19, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Exclude docker-data from test runner
anbsky committed Feb 19, 2024
commit 7c244e35116bcd52fe123afa5fe3b44bb97a8ee2
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -25,13 +25,12 @@ test_down:
docker-compose down

test_prepare:
mkdir -p data/postgres
docker-compose up -d minio db redis
docker-compose up -d cworker conductor
docker-compose up minio-prepare

test: test_prepare
go test -covermode=count -coverprofile=coverage.out ./...
go test -exclude="docker-data" -covermode=count -coverprofile=coverage.out ./...

towerz:
docker run --rm -v "$(PWD)":/usr/src/transcoder -w /usr/src/transcoder --platform linux/amd64 golang:1.16.10 make tower
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -52,7 +52,7 @@ services:
ports:
- '6379:6379'
volumes:
- ./data/redis:/data
- ./docker-data/redis:/data
command: >
--requirepass odyredis --appendonly yes
labels:
@@ -66,7 +66,7 @@ services:
environment:
POSTGRES_PASSWORD: odyseeteam
volumes:
- ./data/postgres:/var/lib/postgresql/data
- ./docker-data/postgres:/var/lib/postgresql/data
command:
- -clogging_collector=on
- -clog_statement=all
@@ -84,15 +84,15 @@ services:
- "38861:38861"
- "41949:41949"
volumes:
- ./data/minio:/data
- ./docker-data/minio:/data
environment:
MINIO_ROOT_USER: ody
MINIO_ROOT_PASSWORD: odyseetes3
command: server --address 0.0.0.0:9000 /data
minio-prepare:
image: minio/mc
volumes:
- ./data/minio:/data
- ./docker-data/minio:/data
entrypoint: >
/bin/sh -c "
/usr/bin/mc config host add myminio http://minio:9000 ody odyseetes3;