Some checks failed
Lock Threads / action (push) Has been cancelled
Mark stale issues and pull requests / stale (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot EE docker images / merge (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot CE docker images / merge (push) Has been cancelled
Run Chatwoot CE spec / lint-backend (push) Has been cancelled
Run Chatwoot CE spec / lint-frontend (push) Has been cancelled
Run Chatwoot CE spec / frontend-tests (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (0, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (1, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (10, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (11, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (12, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (13, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (14, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (15, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (2, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (3, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (4, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (5, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (6, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (7, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (8, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (9, 16) (push) Has been cancelled
Run Linux nightly installer / nightly (push) Has been cancelled
- Add Logistics component with progress tracking - Add OrderDetail component for order information - Support data-driven steps and actions - Add blue color scale to widget SCSS - Fix node overflow and progress bar rendering issues - Add English translations for dashboard components Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
63 lines
1.3 KiB
Makefile
63 lines
1.3 KiB
Makefile
# Variables
|
|
APP_NAME := chatwoot
|
|
RAILS_ENV ?= development
|
|
|
|
# Targets
|
|
setup:
|
|
gem install bundler
|
|
bundle install
|
|
pnpm 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 && pnpm install
|
|
|
|
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
|
|
rm -f tmp/pids/*.pid
|
|
overmind start -f Procfile.dev
|
|
|
|
force_run_tunnel:
|
|
lsof -ti:3000 | xargs kill -9 2>/dev/null || true
|
|
rm -f ./.overmind.sock
|
|
rm -f tmp/pids/*.pid
|
|
overmind start -f Procfile.tunnel
|
|
|
|
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 force_run_tunnel debug debug_worker
|