Skip to content

Commit

Permalink
Merge pull request #69 from erssebaggala/add_graphs
Browse files Browse the repository at this point in the history
Add graphs to reports module
  • Loading branch information
erssebaggala authored May 27, 2019
2 parents 506efb2 + 23f9f62 commit 81f1384
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 14 deletions.
Empty file added .travis.yml
Empty file.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,15 @@ Boda Telecom Suite Community Edition - An open source telecommunication network
* CM managed object browsing
* Automatic network baseline generation
* Radio Access Network (RAN) audit (relations, conflicts, parameter values vs baseline )
* Reporting

* Reports that support tabular and different graphical presentation of data

## Requirements

* 4GB memory
* 64 bit OS (Kernel version 3.10+ for Linux and build 10.0.14393+ for Windows)
* [Docker](https://www.docker.com/get-docker)
* 5GB hard disk space
* Memory and disk space depend on the network /data size
* Latest web browser

## Deployment/Installation

* Download latest release files (bts-ce-**version**) from https://github.com/bodastage/bts-ce/releases/latest
Expand All @@ -36,7 +35,7 @@ Boda Telecom Suite Community Edition - An open source telecommunication network
```batch
> bts setup
```
* Open web broswer and paste the URL http://localhost on windows or http://192.168.99.100
* Open web broswer and paste the URL http://localhost:8888
* Login with username: **[email protected]** and password: **password**

## Installing a new release
Expand Down Expand Up @@ -66,6 +65,7 @@ This is achieved using the following 2 commands,
- [PostgreSQL](https://www.postgresql.org/)
- [Apache Airflow](https://airflow.apache.org/)
- [ReactJs](http://reactjs.org/)
- [RabbitMQ](https://www.rabbitmq.com/)

## Resources

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2.0.0-rc3
v2.1.0
2 changes: 1 addition & 1 deletion bts-ce-api
2 changes: 1 addition & 1 deletion bts.bat
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ If "%~1"=="" (
Rem Echo manage list modules -- List installed modules
Echo -----------------------------------------------------
Echo Boda Telecom Suite - Community Edition
Echo Copyright 2017-2018. Bodastage Solutions. http://www.bodastage.com
Echo Copyright 2017-2019. Bodastage Solutions. http://www.bodastage.com
)

Rem Run setup
Expand Down
9 changes: 6 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ services:
- ./queue_scripts/definitions.json:/etc/rabbitmq/definitions.json:ro
- ./queue_scripts/queue_setup.sh:/queue_setup.sh
bts-api:
image: registry.gitlab.com/bts-ce/bts-ce-api
# image: registry.gitlab.com/bts-ce/bts-ce-api
image: bodastage/bts-ce-api:1.2.1
ports:
- 8181:8181
restart: always
Expand Down Expand Up @@ -62,7 +63,8 @@ services:
container_name: "bts-ce-api"
command: ["/wait-for-it.sh","database:5432","--","/migrate-and-start-web-server.sh"]
bts-web:
image: registry.gitlab.com/bts-ce/bts-ce-web:2.1.0
# image: registry.gitlab.com/bts-ce/bts-ce-web:2.1.2
image: bodastage/bts-ce-web:2.1.2
restart: always
ports:
- "8888:80"
Expand Down Expand Up @@ -133,7 +135,8 @@ services:
# container_name: "bts-ce-ftp"
# command: ["pure-pw","useradd","bodastage","-f", "/etc/pure-ftpd/passwd/pureftpd.passwd", "-m", "-u", "ftpuser", "-d", "/home/ftpusers/bodastage"]
bts-reports:
image: registry.gitlab.com/bts-ce/bts-ce-reports
# image: registry.gitlab.com/bts-ce/bts-ce-reports:0.0.1
image: bodastage/bts-ce-reports:0.0.1
restart: always
environment:
- POSTGRES_PASSWORD=password
Expand Down
2 changes: 1 addition & 1 deletion win/Setup.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ if ( $UseHyperVDriver -eq $True ){

# Create docker machine
Write-Host -NoNewline "Creating docker-machine..."
"& '$DockerForWindows\docker-machine.exe' create -d hyperv -hyper-virtual-switch BTSExternalSwitch default" | Invoke-Expression
"& '$DockerForWindows\docker-machine.exe' create -d hyperv --hyperv-memory 2048 --hyperv-virtual-switch BTSExternalSwitch default" | Invoke-Expression
Write-Host "Done"
Write-Host ""

Expand Down

0 comments on commit 81f1384

Please sign in to comment.