Skip to content

Commit

Permalink
Merge pull request #70 from mekanix/feature/publish
Browse files Browse the repository at this point in the history
Add publish target
  • Loading branch information
mekanix authored Jul 8, 2020
2 parents 989355b + ec49a2d commit 8d8f04c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@ SERVICE != echo ${app_name}
REGGAE_PATH := /usr/local/share/reggae

.include <${REGGAE_PATH}/mk/service.mk>

publish: build_lib
@sudo cbsd jexec jname=${SERVICE} user=devel cmd=/usr/src/bin/publish.sh
2 changes: 1 addition & 1 deletion bin/freenit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -e


if [ "${1}" = "--version" ]; then
echo "0.1.10"
echo "0.1.11"
exit 0
fi

Expand Down
2 changes: 2 additions & 0 deletions freenit/project/common_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@

class Config:
NAME = app_name
API_TITLE = app_name
API_VERSION = 0
PROJECT_ROOT = os.path.dirname(os.path.abspath(__file__))
DEBUG = False
SECURITY_PASSWORD_SALT = 'freenit'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

setup(
name='freenit',
version='0.1.10',
version='0.1.11',
description='REST API framework based on Flask-Smorest',
long_description=README,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 8d8f04c

Please sign in to comment.