mirror of
https://github.com/valitydev/redash.git
synced 2024-11-06 17:15:17 +00:00
58 lines
1.2 KiB
Makefile
58 lines
1.2 KiB
Makefile
.PHONY: compose_build up test_db create_database clean down bundle tests lint backend-unit-tests frontend-unit-tests test build watch start redis-cli bash
|
|
|
|
compose_build:
|
|
docker-compose build
|
|
|
|
up:
|
|
docker-compose up -d --build
|
|
|
|
test_db:
|
|
@for i in `seq 1 5`; do \
|
|
if (docker-compose exec postgres sh -c 'psql -U postgres -c "select 1;"' 2>&1 > /dev/null) then break; \
|
|
else echo "postgres initializing..."; sleep 5; fi \
|
|
done
|
|
docker-compose exec postgres sh -c 'psql -U postgres -c "drop database if exists tests;" && psql -U postgres -c "create database tests;"'
|
|
|
|
create_database:
|
|
docker-compose run server create_db
|
|
|
|
clean:
|
|
docker-compose down && docker-compose rm
|
|
|
|
down:
|
|
docker-compose down
|
|
|
|
bundle:
|
|
docker-compose run server bin/bundle-extensions
|
|
|
|
tests:
|
|
docker-compose run server tests
|
|
|
|
lint:
|
|
./bin/flake8_tests.sh
|
|
|
|
backend-unit-tests: up test_db
|
|
docker-compose run --rm --name tests server tests
|
|
|
|
frontend-unit-tests: bundle
|
|
npm ci
|
|
npm run bundle
|
|
npm test
|
|
|
|
test: lint backend-unit-tests frontend-unit-tests
|
|
|
|
build: bundle
|
|
npm run build
|
|
|
|
watch: bundle
|
|
npm run watch
|
|
|
|
start: bundle
|
|
npm run start
|
|
|
|
redis-cli:
|
|
docker-compose run --rm redis redis-cli -h redis
|
|
|
|
bash:
|
|
docker-compose run --rm server bash
|