-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
47 lines (32 loc) · 729 Bytes
/
Copy pathMakefile
File metadata and controls
47 lines (32 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
t:
MIX_ENV=test mix test
tw:
mix test.watch
types:
mix dialyzer
cov:
MIX_ENV=test mix coveralls
cov.html:
MIX_ENV=test mix coveralls.html
assets:
cd apps/ui/assets && yarn watch
build-assets:
cd apps/ui/assets && yarn build-production
dev:
PORT=4000 mix phx.server
iex:
PORT=4000 iex -S mix phx.server
ssh:
ssh root@gifme-web
digest:
MIX_ENV=prod mix phx.digest
release: build-assets digest
MIX_ENV=prod mix release --overwrite
run:
_build/prod/rel/gifs_to_gifs/bin/gifs_to_gifs start_iex
check-ci:
circleci config validate
process-ci:
circleci config process .circleci/config.yml
.DEFAULT: test
.PHONY: t tw types cov cov.html assets build-assets dev iex ssh digest release run check-ci process-ci