FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
chatwoot/Makefile at develop · KimSpring/chatwoot · GitHub
KimSpring
/
chatwoot
Public
forked from
chatwoot/chatwoot
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
chatwoot
/
Makefile
Copy path
More file actions
More file actions
Latest commit
History
History
History
55 lines (40 loc) · 1.08 KB
Breadcrumbs
chatwoot
/
Makefile
Copy path
File metadata and controls
55 lines (40 loc) · 1.08 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
48
49
50
51
52
53
54
55
#
Variables
APP_NAME
:= chatwoot
RAILS_ENV
?= development
#
Targets
setup
:
gem install bundler
bundle install
yarn install
db_create
:
RAILS_ENV=
$(
RAILS_ENV
)
bundle
exec
rails db:create
db_migrate
:
RAILS_ENV=
$(
RAILS_ENV
)
bundle
exec
rails db:migrate
db_seed
:
RAILS_ENV=
$(
RAILS_ENV
)
bundle
exec
rails db:seed
db_reset
:
RAILS_ENV=
$(
RAILS_ENV
)
bundle
exec
rails db:reset
db
:
RAILS_ENV=
$(
RAILS_ENV
)
bundle
exec
rails db:chatwoot_prepare
console
:
RAILS_ENV=
$(
RAILS_ENV
)
bundle
exec
rails console
server
:
RAILS_ENV=
$(
RAILS_ENV
)
bundle
exec
rails server -b 0.0.0.0 -p 3000
burn
:
bundle
&&
yarn
run
:
@if [
-f
./.overmind.sock ]
;
then
\
echo
"
Overmind is already running. Use 'make force_run' to start a new instance.
"
;
\
else
\
overmind start -f Procfile.dev
;
\
fi
force_run
:
rm -f ./.overmind.sock
overmind start -f Procfile.dev
debug
:
overmind connect backend
debug_worker
:
overmind connect worker
docker
:
docker build -t
$(
APP_NAME
)
-f ./docker/Dockerfile
.
.PHONY
: setup db_create db_migrate db_seed db_reset db console server burn docker run force_run debug debug_worker
Back
|
FazBrowse Home
|
New Git URL