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
This is a template repository for configuring and deploying [eodash-v5](https://github.com/EOX-A/eodash-v5)
3
+
4
+
## Prerequisites
5
+
* Docker
6
+
* Node v18 or higher
7
+
8
+
## Get Started
9
+
1. Create your own brand repository from this template. See [creating a repository from a template](https://docs.github.com/en/repositories/creating-and-managing-repositories/creating-a-repository-from-a-template).
10
+
11
+
2. Install the required dependencies after cloning or downloading your repo:
12
+
```bash
13
+
npm run install
14
+
```
15
+
16
+
3. Customize the configurations in `config.js`. check out the [docs](https://github.com/EOX-A/eodash-v5/blob/remodel/docs/interfaces/EodashConfig.md) to learn more.
17
+
18
+
4. Build the docker image:
19
+
```bash
20
+
docker build -t="my-brand".
21
+
```
22
+
23
+
5. Run the docker image:
24
+
```bash
25
+
docker run -p="8080:8080" my-brand
26
+
```
27
+
6. Once everything has started up, you should be able to access the dashboard via [http://localhost:8080/](http://localhost:8080/) on your host machine.
28
+
```bash
29
+
open http://localhost:8080/
30
+
```
31
+
32
+
## Static Assets
33
+
files and directories inside the `public` directory will be served statically in the application. They can be refrenced inside the config using their relative path:
0 commit comments