dex v0.1.1 API Reference
Modules
This module provides helper functions for the tasks like mix deploy
,
mix deploy.setup
, etc
Deploy a release for the current mix application.
Examples
# Deploy a release using defaults
mix deploy
Clean the deployment environment for the current mix application.
Examples
# Clean the deployment environment
mix deploy.clean
Run mix task for the current mix application on remote.
Examples
# Run the repository migrations
mix deploy.mix ecto.migrate
# Digest and compress static files
mix deploy.mix phoenix.digest
# Start applications and their servers
mix deploy.mix phoenix.server
Run service script for the current mix application on remote.
Examples
# Start current mix application
mix deploy.service start
# Stop current mix application
mix deploy.service stop
Setup a deployment environment for the current mix application.
Examples
# Setup a deployment environment using defaults
mix deploy.setup