-
Notifications
You must be signed in to change notification settings - Fork 404
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:veops/cmdb
- Loading branch information
Showing
4 changed files
with
101 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,52 @@ | ||
.PHONY: env clean api ui worker | ||
|
||
help: | ||
@echo " env create a development environment using pipenv" | ||
@echo " deps install dependencies using pip" | ||
@echo " clean remove unwanted files like .pyc's" | ||
@echo " lint check style with flake8" | ||
@echo " api start api server" | ||
@echo " ui start ui server" | ||
@echo " worker start async tasks worker" | ||
|
||
env: | ||
MYSQL_ROOT_PASSWORD ?= root | ||
MYSQL_PORT ?= 3306 | ||
REDIS_PORT ?= 6379 | ||
|
||
default: help | ||
help: ## display this help | ||
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m<target>\033[0m\n"} /^[a-zA-Z0-9_-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST) | ||
.PHONY: help | ||
|
||
env: ## create a development environment using pipenv | ||
sudo easy_install pip && \ | ||
pip install pipenv -i https://pypi.douban.com/simple && \ | ||
npm install yarn && \ | ||
make deps | ||
.PHONY: env | ||
|
||
docker-mysql: ## deploy MySQL use docker | ||
@docker run --name mysql -p ${MYSQL_PORT}:3306 -e MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD} -d mysql:latest | ||
.PHONY: docker-mysql | ||
|
||
docker-redis: ## deploy Redis use docker | ||
@docker run --name redis -p ${REDIS_PORT}:6379 -d redis:latest | ||
.PHONY: docker-redis | ||
|
||
deps: | ||
deps: ## install dependencies using pip | ||
cd cmdb-api && \ | ||
pipenv install --dev && \ | ||
pipenv run flask db-setup && \ | ||
pipenv run flask cmdb-init-cache && \ | ||
cd .. && \ | ||
cd cmdb-ui && yarn install && cd .. | ||
.PHONY: deps | ||
|
||
api: | ||
api: ## start api server | ||
cd cmdb-api && pipenv run flask run -h 0.0.0.0 | ||
.PHONY: api | ||
|
||
worker: | ||
worker: ## start async tasks worker | ||
cd cmdb-api && pipenv run celery -A celery_worker.celery worker -E -Q one_cmdb_async --concurrency=1 -D && pipenv run celery -A celery_worker.celery worker -E -Q acl_async --concurrency=1 -D | ||
.PHONY: worker | ||
|
||
ui: | ||
ui: ## start ui server | ||
cd cmdb-ui && yarn run serve | ||
.PHONY: ui | ||
|
||
clean: | ||
clean: ## remove unwanted files like .pyc's | ||
pipenv run flask clean | ||
.PHONY: clean | ||
|
||
lint: | ||
lint: ## check style with flake8 | ||
flake8 --exclude=env . | ||
.PHONY: lint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters