-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f439913
commit 235cb3b
Showing
12 changed files
with
139 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
title: Version 0.3.1 Release | ||
author: Emmanuel Robert Ssebaggala | ||
authorURL: https://www.ssegga.com | ||
--- | ||
|
||
0.3.1 adds the changes below: | ||
* Adds Huawei 5G MO CM tables | ||
* Adds options to export XLSX or XLSB when converting csv files to excel | ||
* Adds option to re-create the entire database or just apply the new changes | ||
* Remove of BTS5900 during GExport pre-processing step | ||
* Fixes showing of carrier colors after upload on map |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
--- | ||
id: version-0.3.1-installation | ||
title: Installation | ||
sidebar_label: Installation | ||
original_id: installation | ||
--- | ||
- [System Requirements](#system-requirements) | ||
- [Installing Boda-Lite](#installing-laravel) | ||
|
||
## System Requirements | ||
The minimum requirements to run Boda-Lite are: | ||
* 64bit operating system | ||
* Atleast 1GB Memory | ||
* Disk space depends on the data size | ||
* Windows (8 and later), Linux(3.0.0 kernel and later), or Mac OSX operating system | ||
* Java 8 | ||
* PostgreSQL 10 | ||
|
||
## Installing Boda-Lite | ||
1. Download the installer for the latest version for your OS from the Github releases [page](https://github.com/bodastage/bts-ce-lite/releases). | ||
2. Run the installer or start the application executable for the portable versions | ||
3. Login with the default username and passsord. The default username and password are **btsuser@bodastage.org** and **password** respectively. | ||
4. Install PostgreSQL 10 from the [Enterprise DB Download page](https://www.enterprisedb.com/downloads/postgres-postgresql-downloads) | ||
5. Setup the database by going to Settings > Databases and clicking *Setup Database* | ||
|
||
### Installer names | ||
For installation on windows, select from: | ||
* Boda-Lite-VERSION-win.zip | ||
* Boda-Lite-VERSION-win.exe | ||
* Boda-Lite-Setup-VERSION.exe | ||
|
||
For installation on Linux, select from: | ||
* Boda-Lite-VERSION-x86_64.AppImage | ||
* Boda-Lite-VERSION.x86_64.rpm | ||
* Boda-Lite_VERSION_amd64.deb | ||
* Boda-Lite_VERSION_amd64.snap | ||
|
||
For installation on Mac OSX, select from: | ||
* Boda-Lite-VERSION.dmg | ||
|
||
### Installing on linux | ||
To install the **rpm** package run command below. | ||
``` | ||
$ rpm -i Boda-Lite-VERSION.x86_64.rpm | ||
``` | ||
|
||
To install the **.dep** package run command below. | ||
``` | ||
$ dpkg -i Boda-Lite_VERSION_amd64.deb | ||
``` | ||
|
||
To install the **snap** package, run command below. | ||
``` | ||
# Install snap if not already installed | ||
$ sudo apt update | ||
$ sudo apt install snapd | ||
# Install Boda-Lite span package | ||
$ sudo snap install Boda-Lite_VERSION_amd64.snap | ||
``` | ||
|
||
## Using PostgreSQL without installation | ||
Below are the steps to follow: | ||
### Running on Windows | ||
1. Create a folder for you postgres download (POSTGRES_FOLDER). | ||
2. Launch **cmd** and go to POSTGRES_FOLDER <br /> | ||
`cd POSTGRES_FOLDER` | ||
3. Download PostgreSQL using the download script bundled with Boda-Lite <br /> | ||
` | ||
C:\Users\<USERNAME>\AppData\Local\Programs\Boda-Lite\resources\db\scripts\download_postgres.bat | ||
` | ||
4. Initialize PostgreSQL <br /> | ||
` | ||
PostreSQL\pgsql\bin\initdb.exe -D ..\data --username=postgres -auth=trust | ||
` | ||
5. Run PostgreSQL database <br /> | ||
`PostreSQL\pgsql\bin\pg_ctl.exe start -D ../data` | ||
|
||
|
||
From the above setup, PostgreSQL is running on **localhost** on port **5432** and default user **postgres** with no password. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
id: version-0.3.1-utilities | ||
title: Utilities | ||
sidebar_label: Utilities | ||
original_id: utilities | ||
--- | ||
|
||
|
||
## Combine CSV files into one or different excel workbooks | ||
The **CSV to Excel** utility combines a list of csv files into one or different excel workbooks. You also the have the options of creating | ||
an xlsb or xlsx file. | ||
|
||
![GIS Module](/bts-ce-lite/img/utilities_0.3.1.png) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
[ | ||
"0.3.1", | ||
"0.3.0", | ||
"2.3.0" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters