The OwlBoard API Server & Hub Repo for all issues
Go to file
Fred Boniface 9674ad9392 Remove unused code from controllers
Signed-off-by: Fred Boniface <fred@fjla.uk>
2023-10-12 21:06:30 +01:00
.test-tools newStaffLDB-API (#48) 2023-10-03 21:35:00 +01:00
.vscode Run prettier 2023-08-26 00:38:26 +01:00
mail-templates newStaffLDB-API (#48) 2023-10-03 21:35:00 +01:00
src Remove unused code from controllers 2023-10-12 21:06:30 +01:00
test/utils Rename 'transformers' folder to 'processors' 2023-10-12 20:53:52 +01:00
.dockerignore pis (#12) 2023-05-06 21:54:49 +01:00
.eslintrc.js Run prettier 2023-08-26 00:38:26 +01:00
.gitignore Initial Push (v0.0.2) 2023-02-09 20:34:53 +00:00
.npmrc Working on staffStation.utils and added tests 2023-08-01 21:34:30 +01:00
Dockerfile newStaffLDB-API (#48) 2023-10-03 21:35:00 +01:00
LICENSE Initial commit 2023-02-08 13:40:33 +00:00
README.md Run prettier 2023-08-26 00:38:26 +01:00
app.js Remove remaining unused routes 2023-10-12 21:00:48 +01:00
jest.config.js Run prettier 2023-08-26 00:38:26 +01:00
package-lock.json newStaffLDB-API (#48) 2023-10-03 21:35:00 +01:00
package.json Bump @owlboard/ts-types version 2023-10-12 21:02:21 +01:00
tsconfig.json newStaffLDB-API (#48) 2023-10-03 21:35:00 +01:00

README.md

OwlBoard

OwlBoard is both a backend API, and a frontend Arrival/Departure board webapp.

Powered by Node.JS and using the ldbs-json module, the OwlBoard API provides up to date train departure information for any station in the UK.

Build

To build the application with Docker, clone the repository and run docker build

API Endpoints:

API Documentation has been removed as it is now out of date. I do intent to re-write the documentation at a later date.

Configuration:

Configuration options are set through environment variables. These configuration options are shared with other programs in the OwlBoard ecosystem.

VAR DEFAULT REQUIRED PURPOSE
OWL_SRV_PORT 8460 NO Web Server Port
OWL_SRV_LISTEN 0.0.0.0 NO Web Server Listen Address
OWL_DB_USER owl NO Database Username
OWL_DB_PASS twittwoo NO Database Password - Do not leave as default in production
OWL_DB_NAME owlboard NO Database Name
OWL_DB_PORT 27017 NO Database Server Port
OWL_DB_HOST localhost NO Database Server Host
OWL_LDB_KEY YES National Rail LDBWS API Key
OWL_LDB_SVKEY NO National Rail LDBSVWS API Key
OWL_LDB_CORPUSUSER YES Network Rail NROD Username
OWL_LDB_CORPUSPASS YES Network Rail NROD Password
OWL_GIT_ISSUEBOT NO Gitea API Key for issue reporting
OWL_GIT_APIENDPOINT NO Gitea API Endpoint

In the case that OWL_LDB_SVKEY is not available, staff versions of departure board, etc. will not be available.

In the case that OWL_GIT_ISSUEBOT is not available, the 'Report Issue' page will not be able to POST data.

Database

OwlBoard uses MongoDB

The OwlBoard database is managed by the dbmanager application which will configure and maintain the database and should be run at least twice a day to ensure timetable data is up to date, see https://git.fjla.uk/owlboard/db-manager.