-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
36 lines (32 loc) · 806 Bytes
/
Makefile
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
.PHONY: setup config
setup:
@echo ""
@echo "============================"
@echo " Starting Setup Process... "
@echo "============================"
@echo ""
ruby bin/credentials_config
@echo ""
@echo "============================"
@echo " Installing Ruby Gems... "
@echo "============================"
@echo ""
bundle install
@echo ""
@echo "============================"
@echo " Starting Redis Service... "
@echo "============================"
@echo ""
redis-server --daemonize yes
@echo ""
@echo "============================"
@echo " Precompiling Assets... "
@echo "============================"
@echo ""
rails assets:precompile
@echo ""
@echo "============================"
@echo " Starting Rails Server...."
@echo "============================="
@echo ""
rails server