You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: packages/server/README.md
+8-8
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ You should be able to access the dashboard at http://localhost (will redirect)
52
52
http://localhost/dbadmin/
53
53
54
54
Login details
55
-
```
55
+
```yml
56
56
System: PostgreSQL
57
57
Server: db
58
58
Username: (POSTGRES_USER in .env)
@@ -79,7 +79,7 @@ http://localhost/dashboard/
79
79
A new database will need to be created to allow access for metabase. This should be automatically configured in [docker/config/db/init.sh](./docker/config/db/init.sh), however if these steps fail they can be run manually (currently a bit temperamental - TODO ISSUE - will know if successful if can see a database created that matches the provided $MB_DB_DBNAME).
80
80
81
81
Manual SQL can be executed from the Adminer DB interface, e.g. using the example config:
82
-
```
82
+
```sql
83
83
CREATE USER metabase WITH PASSWORD 'metabase';
84
84
CREATE DATABASE metabase;
85
85
GRANT ALL PRIVILEGES ON DATABASE metabase to metabase;
@@ -88,13 +88,13 @@ GRANT ALL PRIVILEGES ON DATABASE metabase to metabase;
88
88
Once running complete configuration from within the dashboard app.
89
89
90
90
Create a user account using preferred credentials and retain securely elsewhere. As a default when running test servers in docker the following credentials are used
Configure connection to the same database created by the api:
97
-
```
97
+
```yml
98
98
Database type: PostgreSQL
99
99
Name: (any)
100
100
Host: db
@@ -111,7 +111,7 @@ You should then see the main dashboard page
111
111
http://localhost/analytics/
112
112
113
113
An initial set of configuration screens should walk through the process of setting up users and a database connection. If connection fails or additional users need to be created the database can be accessed via the same Adminer `/dbadmin` path and `root` user credentials
114
-
```
114
+
```yml
115
115
System: MySQL
116
116
Server: analytics_db
117
117
Username: root
@@ -120,13 +120,13 @@ Database: (blank)
120
120
```
121
121
You will be asked to create a super user login and password. This information should be stored safely.
122
122
As a default when running test servers in docker the following credentials are used
To enable data collection from the frontend application follow instructions in the dashboard. You may need to record the Matomo Url and site ID as seen on the initial page, e.g.
129
-
```
129
+
```yml
130
130
Matomo URL: http://localhost/
131
131
Your site ID: 1
132
132
```
@@ -150,7 +150,7 @@ http://localhost/triggers/
150
150
This uses the tool [N8N](https://n8n.io/) to provide access to automation and triggers based on events.
151
151
Currently the tool only supports single user authentication provided by username and password provided in the `.env` file
0 commit comments