REST API for Boda Telecom Suite Communtiy Edition (BTS-CE). BTS-CE is an open source telecommunication network management platform.
# Install dependencies
pip install -r requirements.txt
# Run migrations
flask db migrate
# Set Database connection details
export BTS_DB_USER=bodastage
export BTS_DB_PASS=password
export BTS_DB_HOST=localhost
export BTS_DB_PORT=5432
export BTS_DB_NAME=bts
# Run server
python run.py
#
python run.py --port=<PORT> --server=<HOST IP>
docker run \
--name bts-ce-api \
-e BTS_DB_HOST='192.168.99.100' \
-e BTS_DB_NAME='bts' \
-e BTS_DB_USER='bodastage' \
-e BTS_DB_PASS='password' \
-e BTS_DB_PORT='5432' \
-v `pwd`:/app \
-p 8181:8181 bts-ce-api
docker run \
--name bts-ce-api \
-e BTS_DB_HOST='192.168.99.100' \
-e BTS_DB_NAME='bts' \
-e BTS_DB_USER='bodastage' \
-e BTS_DB_PASS='password' \
-e BTS_DB_PORT='5432' \
-v `pwd`:/app \
-p 8181:8181 registry.gitlab.com/bts-ce/bts-ce-api
Copyright 2017 - 2019 Bodastage Solutions
Licensed under the Apache License, Version 2.0 ; you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or at: