Skip to content

Commit b84d8c4

Browse files
committed
feat: initial setup and docs
0 parents  commit b84d8c4

6 files changed

+107
-0
lines changed

README.md

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Omniboard On-Premise Distribution
2+
3+
# Getting Started
4+
5+
1. adjust values in the secret files in this folder
6+
* `api-admin-password` - password of initial Omniboard admin user
7+
* `db-user` - database user to connect backend to the DB
8+
* `db-user-password` - database password to connect backend to the DB
9+
* `db-root-password` - database root password for DB administration
10+
11+
2. adjust values in the `docker-compose.yml` file
12+
* `OB_ORG_ADMIN_EMAIL` - email of the initial Omniboard admin user
13+
* `OB_ORG_NAME` - name of your organization that will be generated in the backend
14+
* `ports` - (Optional) ports to expose frontend, backend and DB can be customized, by default frontend can be accessed on port `:80` which is `http://localhost` (and whatever the public url on which the system is accessible)
15+
16+
3. log into Docker using the `docker login` command with username `omniboard` and password `<your-omniboard-access-key>`
17+
18+
4. run `docker-compose up` to start the containers
19+
20+
5. access the running frontend (by default at [http://localhost](http://localhost)) and log in as an admin user with credentials provided previously:
21+
* email: `OB_ORG_ADMIN_EMAIL`
22+
* password: `api-admin-password`
23+
24+
6. finish initial setup
25+
26+
7. navigate to one of your project folders and run `npx @omniboard/analyzer --ak <your-api-key-from-initial-setup> --api http://localhost:8080` to get first results (`--api http://localhost:8080` assuming its on the same machine, else on a public URL where the Omniboard backend is running)
27+
28+
## Data persistence when pulling new image versions
29+
...
30+
31+
## DB Administration
32+
33+
Database can be accessed using the provided `Adminer` image which will by default run at [http://localhost:8090](http://localhost:8090)

api-admin-password

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
admin

db-root-password

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
secret

db-user

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
admin

db-user-password

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
admin

docker-compose.yml

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
services:
2+
omniboard-app:
3+
image: omniboard/omniboard-app
4+
restart: always
5+
ports:
6+
- 80:80
7+
environment:
8+
API_URL: http://localhost:8080
9+
CONFIG_VARS: API_URL
10+
11+
omniboard-api:
12+
image: omniboard/omniboard-api
13+
restart: always
14+
ports:
15+
- 8080:8080
16+
environment:
17+
OB_ORG_NAME: 'Awesome Inc.'
18+
OB_ORG_ADMIN_EMAIL: [email protected]
19+
OB_ORG_ADMIN_PASSWORD_FILE: /run/secrets/api-admin-password
20+
ENV: docker
21+
TZ: UTC
22+
PORT: 8080
23+
OB_JWT_SECRET: something_unique_doesnt_really_matter_what
24+
OB_DB_HOST: omniboard-db
25+
OB_DB_DATABASE: omniboard
26+
OB_DB_USERNAME_FILE: /run/secrets/db-user
27+
OB_DB_PASSWORD_FILE: /run/secrets/db-user-password
28+
secrets:
29+
- db-user
30+
- db-user-password
31+
- db-root-password
32+
- api-admin-password
33+
34+
omniboard-db:
35+
image: mysql:5.7.37
36+
command: --default-authentication-plugin=mysql_native_password
37+
restart: always
38+
environment:
39+
MYSQL_DATABASE: omniboard
40+
MYSQL_USER_FILE: /run/secrets/db-user
41+
MYSQL_PASSWORD_FILE: /run/secrets/db-user-password
42+
MYSQL_ROOT_PASSWORD_FILE: /run/secrets/db-root-password
43+
volumes:
44+
- omniboard-db-data:/var/lib/mysql
45+
secrets:
46+
- db-user
47+
- db-user-password
48+
- db-root-password
49+
50+
adminer:
51+
image: adminer
52+
restart: always
53+
ports:
54+
- 8090:8080
55+
environment:
56+
ADMINER_DEFAULT_SERVER: omniboard-db
57+
ADMINER_DESIGN: dracula
58+
59+
volumes:
60+
omniboard-db-data:
61+
62+
secrets:
63+
db-user:
64+
file: ./db-user
65+
db-user-password:
66+
file: ./db-user-password
67+
db-root-password:
68+
file: ./db-root-password
69+
api-admin-password:
70+
file: ./api-admin-password

0 commit comments

Comments
 (0)