A CLI tool for managing and deploying the Dominate backend.
- Start and stop the Dominate backend locally with a single command
- Pull the latest code from the Dominate backend repository
- View logs of the running backend containers
Make sure you have Node.js and npm installed on your system.
Run the following command to install dominate-cli
globally:
npm install -g dominate-cli
curl -sL https://raw.githubusercontent.com/DominateAi/Dominate-AI/master/cli-binaries/dominate-cli-linux -o /usr/local/bin/dominate
chmod +x /usr/local/bin/dominate
curl -sL https://raw.githubusercontent.com/DominateAi/Dominate-AI/master/cli-binaries/dominate-cli-macos -o /usr/local/bin/dominate
chmod +x /usr/local/bin/dominate
curl -sL https://raw.githubusercontent.com/DominateAi/Dominate-AI/master/cli-binaries/dominate-cli-win.exe -o /c/Windows/System32/dominate.exe
dominate start
dominate stop
dominate install
dominate logs
dominate help
Before using the dominate-cli
tool, ensure that you have the following prerequisites installed on your system:
The dominate-cli
tool uses the docker-compose-dev.yml
file located in the dominate-backend/docker-compose
directory to start and stop the backend containers. Make sure this file is properly configured according to your backend setup.