Merge branch 'lash/eth-abi-exorcism' of gitlab.com:grassrootseconomics/cic-internal-integration into lash/eth-abi-exorcism
This commit is contained in:
commit
aa3d07b1b0
@ -9,7 +9,7 @@ import semver
|
|||||||
|
|
||||||
logg = logging.getLogger()
|
logg = logging.getLogger()
|
||||||
|
|
||||||
version = (0, 4, 0, 'alpha.7')
|
version = (0, 4, 0, 'alpha.8')
|
||||||
|
|
||||||
version_object = semver.VersionInfo(
|
version_object = semver.VersionInfo(
|
||||||
major=version[0],
|
major=version[0],
|
||||||
|
@ -1 +1 @@
|
|||||||
cic_base[full_graph]==0.1.3a3+build.984b5cff
|
cic_base[full_graph]~=0.2.0a1
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[app]
|
[app]
|
||||||
ALLOWED_IP=0.0.0.0/0
|
ALLOWED_IP=0.0.0.0/0
|
||||||
LOCALE_FALLBACK=en
|
LOCALE_FALLBACK=en
|
||||||
LOCALE_PATH=/usr/src/cic-ussd/var/lib/locale/
|
LOCALE_PATH=var/lib/locale/
|
||||||
MAX_BODY_LENGTH=1024
|
MAX_BODY_LENGTH=1024
|
||||||
PASSWORD_PEPPER=QYbzKff6NhiQzY3ygl2BkiKOpER8RE/Upqs/5aZWW+I=
|
PASSWORD_PEPPER=QYbzKff6NhiQzY3ygl2BkiKOpER8RE/Upqs/5aZWW+I=
|
||||||
SERVICE_CODE=*483*46#,*483*061#,*384*96#
|
SERVICE_CODE=*483*46#,*483*061#,*384*96#
|
||||||
@ -11,13 +11,13 @@ SUPPORT_PHONE_NUMBER=0757628885
|
|||||||
REGION=KE
|
REGION=KE
|
||||||
|
|
||||||
[ussd]
|
[ussd]
|
||||||
MENU_FILE=/usr/src/data/ussd_menu.json
|
MENU_FILE=data/ussd_menu.json
|
||||||
user =
|
user =
|
||||||
pass =
|
pass =
|
||||||
|
|
||||||
[statemachine]
|
[statemachine]
|
||||||
STATES=/usr/src/cic-ussd/states/
|
STATES=states/
|
||||||
TRANSITIONS=/usr/src/cic-ussd/transitions/
|
TRANSITIONS=transitions/
|
||||||
|
|
||||||
[client]
|
[client]
|
||||||
host =
|
host =
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
[pgp]
|
[pgp]
|
||||||
export_dir = /usr/src/pgp/keys/
|
export_dir = pgp/keys/
|
||||||
keys_path = /usr/src/secrets/
|
keys_path = /usr/src/secrets/
|
||||||
private_keys = privatekeys_meta.asc
|
private_keys = privatekeys_meta.asc
|
||||||
passphrase =
|
passphrase =
|
||||||
|
@ -4,4 +4,4 @@
|
|||||||
|
|
||||||
user_server_port=${SERVER_PORT:-9500}
|
user_server_port=${SERVER_PORT:-9500}
|
||||||
|
|
||||||
/usr/local/bin/uwsgi --wsgi-file /usr/local/lib/python3.8/site-packages/cic_ussd/runnable/daemons/cic_user_server.py --http :"$user_server_port" --pyargv "$@"
|
/usr/local/bin/uwsgi --wsgi-file cic_ussd/runnable/daemons/cic_user_server.py --http :"$user_server_port" --pyargv "$@"
|
||||||
|
@ -4,4 +4,4 @@
|
|||||||
|
|
||||||
user_ussd_server_port=${SERVER_PORT:-9000}
|
user_ussd_server_port=${SERVER_PORT:-9000}
|
||||||
|
|
||||||
/usr/local/bin/uwsgi --wsgi-file /usr/local/lib/python3.8/site-packages/cic_ussd/runnable/daemons/cic_user_ussd_server.py --http :"$user_ussd_server_port" --pyargv "$@"
|
/usr/local/bin/uwsgi --wsgi-file cic_ussd/runnable/daemons/cic_user_ussd_server.py --http :"$user_ussd_server_port" --pyargv "$@"
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
cic_base[full_graph]==0.1.3a3+build.984b5cff
|
cic_base[full_graph]==0.2.0a1
|
||||||
cic-eth~=0.12.0a1
|
cic-eth~=0.12.0a1
|
||||||
cic-notify~=0.4.0a7
|
cic-notify~=0.4.0a8
|
||||||
cic-types~=0.1.0a11
|
cic-types~=0.1.0a11
|
||||||
|
@ -17,7 +17,7 @@ default_config_dir = '/usr/local/etc/cic'
|
|||||||
|
|
||||||
arg_parser = argparse.ArgumentParser()
|
arg_parser = argparse.ArgumentParser()
|
||||||
arg_parser.add_argument('-c', type=str, default=default_config_dir, help='config file')
|
arg_parser.add_argument('-c', type=str, default=default_config_dir, help='config file')
|
||||||
arg_parser.add_argument('-q', type=str, default='cic-eth', help='Task queue')
|
arg_parser.add_argument('-q', type=str, default='cic-import-ussd', help='Task queue')
|
||||||
arg_parser.add_argument('-v', action='store_true', help='Be verbose')
|
arg_parser.add_argument('-v', action='store_true', help='Be verbose')
|
||||||
arg_parser.add_argument('-vv', action='store_true', help='Be more verbose')
|
arg_parser.add_argument('-vv', action='store_true', help='Be more verbose')
|
||||||
arg_parser.add_argument('user_dir', type=str, help='path to users export dir tree')
|
arg_parser.add_argument('user_dir', type=str, help='path to users export dir tree')
|
||||||
|
@ -149,7 +149,7 @@ for t in include:
|
|||||||
api = None
|
api = None
|
||||||
for t in custodial_tests:
|
for t in custodial_tests:
|
||||||
if t in active_tests:
|
if t in active_tests:
|
||||||
from cic_eth.api.api_admin import AdminApi
|
from cic_eth.api.admin import AdminApi
|
||||||
api = AdminApi(None)
|
api = AdminApi(None)
|
||||||
logg.info('activating custodial module'.format(t))
|
logg.info('activating custodial module'.format(t))
|
||||||
break
|
break
|
||||||
|
Loading…
Reference in New Issue
Block a user