Skip to content

Commit 81f1384

Browse files
authored
Merge pull request #69 from erssebaggala/add_graphs
Add graphs to reports module
2 parents 506efb2 + 23f9f62 commit 81f1384

9 files changed

+17
-14
lines changed

Diff for: .travis.yml

Whitespace-only changes.

Diff for: README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,15 @@ Boda Telecom Suite Community Edition - An open source telecommunication network
1313
* CM managed object browsing
1414
* Automatic network baseline generation
1515
* Radio Access Network (RAN) audit (relations, conflicts, parameter values vs baseline )
16-
* Reporting
17-
16+
* Reports that support tabular and different graphical presentation of data
1817

1918
## Requirements
2019

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

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

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

7070
## Resources
7171

Diff for: VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v2.0.0-rc3
1+
v2.1.0

Diff for: bts-ce-api

Diff for: bts.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ If "%~1"=="" (
6767
Rem Echo manage list modules -- List installed modules
6868
Echo -----------------------------------------------------
6969
Echo Boda Telecom Suite - Community Edition
70-
Echo Copyright 2017-2018. Bodastage Solutions. http://www.bodastage.com
70+
Echo Copyright 2017-2019. Bodastage Solutions. http://www.bodastage.com
7171
)
7272

7373
Rem Run setup

Diff for: docker-compose.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ services:
3333
- ./queue_scripts/definitions.json:/etc/rabbitmq/definitions.json:ro
3434
- ./queue_scripts/queue_setup.sh:/queue_setup.sh
3535
bts-api:
36-
image: registry.gitlab.com/bts-ce/bts-ce-api
36+
# image: registry.gitlab.com/bts-ce/bts-ce-api
37+
image: bodastage/bts-ce-api:1.2.1
3738
ports:
3839
- 8181:8181
3940
restart: always
@@ -62,7 +63,8 @@ services:
6263
container_name: "bts-ce-api"
6364
command: ["/wait-for-it.sh","database:5432","--","/migrate-and-start-web-server.sh"]
6465
bts-web:
65-
image: registry.gitlab.com/bts-ce/bts-ce-web:2.1.0
66+
# image: registry.gitlab.com/bts-ce/bts-ce-web:2.1.2
67+
image: bodastage/bts-ce-web:2.1.2
6668
restart: always
6769
ports:
6870
- "8888:80"
@@ -133,7 +135,8 @@ services:
133135
# container_name: "bts-ce-ftp"
134136
# command: ["pure-pw","useradd","bodastage","-f", "/etc/pure-ftpd/passwd/pureftpd.passwd", "-m", "-u", "ftpuser", "-d", "/home/ftpusers/bodastage"]
135137
bts-reports:
136-
image: registry.gitlab.com/bts-ce/bts-ce-reports
138+
# image: registry.gitlab.com/bts-ce/bts-ce-reports:0.0.1
139+
image: bodastage/bts-ce-reports:0.0.1
137140
restart: always
138141
environment:
139142
- POSTGRES_PASSWORD=password

Diff for: win/Setup.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ if ( $UseHyperVDriver -eq $True ){
208208

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

0 commit comments

Comments
 (0)