Packages

An open and opinionated DeFi/CeFi/TradFi trading platform using productive & familiar open source libraries and tools for strategy research, execution and operation

Current section

Files

Jump to
prop Makefile
Raw

Makefile

SHELL=/bin/bash
test:
echo "Running tests..."
docker-compose up --detach db
mix setup
start_development:
echo "Starting developer environment..."
docker-compose up --detach db
mix setup
mix phx.server
start:
echo "Starting grafana, database and prometheus..."
docker-compose up --detach grafana db prometheus
echo "Configuring network with reverse proxy..."
docker-compose up --detach reverse_proxy
echo "Starting web application..."
docker-compose up web