133 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			133 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
include Makefile.config
 | 
						|
-include .env
 | 
						|
.SILENT:
 | 
						|
 | 
						|
make-p:
 | 
						|
	# Launch all P targets in parallel and exit as soon as one exits.
 | 
						|
	set -m; (for p in $(P); do ($(MAKE) $$p || kill 0)& done; wait)
 | 
						|
 | 
						|
build-client: lint-client
 | 
						|
	cd fittrackee_client && $(NPM) build
 | 
						|
 | 
						|
check-all: lint-all type-check test-python
 | 
						|
 | 
						|
clean:
 | 
						|
	rm -rf .mypy_cache
 | 
						|
	rm -rf .pytest_cache
 | 
						|
 | 
						|
clean-install: clean
 | 
						|
	rm -fr $(NODE_MODULES)
 | 
						|
	rm -fr $(VENV)
 | 
						|
	rm -rf *.egg-info
 | 
						|
	rm -rf dist/
 | 
						|
 | 
						|
downgrade-db:
 | 
						|
	$(FLASK) db downgrade --directory $(MIGRATIONS)
 | 
						|
 | 
						|
html:
 | 
						|
	rm -rf docsrc/build
 | 
						|
	rm -rf docs/*
 | 
						|
	touch docs/.nojekyll
 | 
						|
	$(SPHINXBUILD) -M html "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
 | 
						|
	rm -rf docsrc/build/html/_static/bootstrap-2.3.2
 | 
						|
	rm -rf docsrc/build/html/_static/bootswatch-2.3.2
 | 
						|
	find docsrc/build/html/_static/bootswatch-3.3.7/. -maxdepth 1 -not -name flatly -not -name fonts -exec rm -rf '{}' \; 2>/tmp/NULL
 | 
						|
	sed -i "s/\@import url(\"https:\/\/fonts.googleapis.com\/css?family=Lato:400,700,400italic\");//" docsrc/build/html/_static/bootswatch-3.3.7/flatly/bootstrap.min.css
 | 
						|
	cp -a docsrc/build/html/. docs
 | 
						|
 | 
						|
install-db:
 | 
						|
	psql -U postgres -f db/create.sql
 | 
						|
	$(FLASK) db upgrade --directory $(MIGRATIONS)
 | 
						|
	$(FLASK) init-data
 | 
						|
 | 
						|
init-app-config:
 | 
						|
	$(FLASK) init-app-config
 | 
						|
 | 
						|
init-db:
 | 
						|
	$(FLASK) drop-db
 | 
						|
	$(FLASK) db upgrade --directory $(MIGRATIONS)
 | 
						|
	$(FLASK) init-data
 | 
						|
 | 
						|
install: install-client install-python
 | 
						|
 | 
						|
install-client:
 | 
						|
	cd fittrackee_client && $(NPM) install --prod
 | 
						|
 | 
						|
install-client-dev:
 | 
						|
	#                                         https://github.com/facebook/create-react-app/issues/8688
 | 
						|
	cd fittrackee_client && $(NPM) install && sed -i '/process.env.CI/ s/isInteractive [|]*//' node_modules/react-scripts/scripts/start.js
 | 
						|
 | 
						|
install-dev: install-client-dev install-python-dev
 | 
						|
 | 
						|
install-python:
 | 
						|
	$(POETRY) install --no-dev
 | 
						|
 | 
						|
install-python-dev:
 | 
						|
	$(POETRY) install
 | 
						|
 | 
						|
lint-all: lint-python lint-client
 | 
						|
 | 
						|
lint-all-fix: lint-python-fix lint-client-fix
 | 
						|
 | 
						|
lint-client:
 | 
						|
	cd fittrackee_client && $(NPM) lint
 | 
						|
 | 
						|
lint-client-fix:
 | 
						|
	cd fittrackee_client && $(NPM) lint-fix
 | 
						|
 | 
						|
lint-python:
 | 
						|
	$(PYTEST) --flake8 --isort --black -m "flake8 or isort or black" fittrackee e2e --ignore=fittrackee/migrations
 | 
						|
 | 
						|
lint-python-fix:
 | 
						|
	$(BLACK) fittrackee e2e
 | 
						|
 | 
						|
mail:
 | 
						|
	docker run -d -e "MH_STORAGE=maildir" -v /tmp/maildir:/maildir -p 1025:1025 -p 8025:8025 mailhog/mailhog
 | 
						|
 | 
						|
migrate-db:
 | 
						|
	$(FLASK) db migrate --directory $(MIGRATIONS)
 | 
						|
 | 
						|
recalculate:
 | 
						|
	$(FLASK) recalculate
 | 
						|
 | 
						|
run:
 | 
						|
	$(MAKE) P="run-server run-workers" make-p
 | 
						|
 | 
						|
run-server:
 | 
						|
	echo 'Running on http://$(HOST):$(PORT)'
 | 
						|
	cd fittrackee && $(GUNICORN) -b $(HOST):$(PORT) "fittrackee:create_app()" --error-logfile ../gunicorn.log
 | 
						|
 | 
						|
run-workers:
 | 
						|
	$(FLASK) worker --processes=$(WORKERS_PROCESSES) >> dramatiq.log  2>&1
 | 
						|
 | 
						|
serve:
 | 
						|
	$(MAKE) P="serve-client serve-python" make-p
 | 
						|
 | 
						|
serve-dev:
 | 
						|
	$(MAKE) P="serve-client serve-python-dev" make-p
 | 
						|
 | 
						|
serve-client:
 | 
						|
	cd fittrackee_client && $(NPM) start
 | 
						|
 | 
						|
serve-python:
 | 
						|
	$(FLASK) run --with-threads -h $(HOST) -p $(PORT)
 | 
						|
 | 
						|
serve-python-dev:
 | 
						|
	$(FLASK) run --with-threads -h $(HOST) -p $(PORT) --cert=adhoc
 | 
						|
 | 
						|
test-e2e: init-db
 | 
						|
	$(PYTEST) e2e --driver firefox $(PYTEST_ARGS)
 | 
						|
 | 
						|
test-e2e-client: init-db
 | 
						|
	E2E_ARGS=client $(PYTEST) e2e --driver firefox $(PYTEST_ARGS)
 | 
						|
 | 
						|
test-python:
 | 
						|
	$(PYTEST) fittrackee --cov-config .coveragerc --cov=fittrackee --cov-report term-missing $(PYTEST_ARGS)
 | 
						|
 | 
						|
type-check:
 | 
						|
	echo 'Running mypy...'
 | 
						|
	$(MYPY) fittrackee --disallow-untyped-defs --ignore-missing-imports
 | 
						|
 | 
						|
upgrade-db:
 | 
						|
	$(FLASK) db upgrade --directory $(MIGRATIONS)
 |