Last active
June 3, 2016 00:12
-
-
Save iver/cc3f438d54c628ab8ec4d42ae2fc45cd to your computer and use it in GitHub Desktop.
Makefile for phoenix project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SHELL := /bin/bash | |
ACTUAL := $(shell pwd) | |
MIX_ENV=dev | |
export MIX_ENV | |
export ACTUAL | |
all: release | |
clean: | |
mix deps.clean --all | |
compile: | |
mix deps.get | |
mix deps.compile | |
mix compile | |
release: clean compile | |
brunch build --production | |
mix phoenix.digest | |
mix release | |
@echo "Release para MIX_ENV=${MIX_ENV} generado!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment