mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-29 18:22:53 +00:00
39 lines
724 B
Makefile
39 lines
724 B
Makefile
# 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:
|
|
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:
|
|
overmind start -f Procfile.dev
|
|
|
|
docker:
|
|
docker build -t $(APP_NAME) -f ./docker/Dockerfile .
|
|
|
|
.PHONY: setup db_create db_migrate db_seed db console server burn docker run
|