Skip to content
Snippets Groups Projects
Commit 58b1bb26 authored by thomaswoehlke's avatar thomaswoehlke
Browse files

git_commit_and_push via make

parent 679a838e
No related branches found
No related tags found
1 merge request!162Refactoring 2021 05 20 start
......@@ -112,13 +112,22 @@ vcs_commit:
git add .
git commit -m "git_commit_and_push via make"
vcs_push:
vcs_checkin:
git push
vcs_pull:
vcs_checkout:
git submodule update
git pull
vcs: vcs_commit vcs_push vcs_pull
vcs_setup:
git submodule init
git submodule update
git config --global diff.submodule log
git submodule update --remote --merge
vcs_push: vcs_setup vcs_commit vcs_checkin vcs_checkout
vcs_pull: vcs_setup vcs_checkout
love:
@echo "not war!"
......@@ -72,6 +72,7 @@ Pillow==8.2.0
pip-licenses==3.3.1
pip-tools==6.1.0
pipenv==2020.11.15
pkg-resources==0.0.0
plantuml==0.3.0
plantuml-gentools==0.1.2
plantuml-markdown==3.4.2
......
......@@ -5,10 +5,10 @@ CELERY_CONF_WORKER_SEND_TASK_EVENTS = True
CELERY_CONF_TASK_SEND_SENT_EVENT = True
CELERY_LOG_REDIRECT = '1'
CELERY_LOG_REDIRECT_LEVEL = 'INFO'
SQLALCHEMY_DATABASE_USER = 'covid19data'
SQLALCHEMY_DATABASE_PW = 'covid19datapwd'
SQLALCHEMY_DATABASE_USER = 'flask_covid19'
SQLALCHEMY_DATABASE_PW = 'flask_covid19pwd'
SQLALCHEMY_DATABASE_HOST = 'localhost'
SQLALCHEMY_DATABASE_DB = 'covid19data'
SQLALCHEMY_DATABASE_DB = 'flask_covid19'
CACHE_TYPE = 'MemcachedCache'
CACHE_MEMCACHED_SERVERS = '127.0.0.1:11211'
CACHE_DEFAULT_TIMEOUT = 120
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment