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: README.md
+34-35Lines changed: 34 additions & 35 deletions
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ Project configuration is managed through the use of YAML configuration (see reso
9
9
### _Requirements_
10
10
This section covers the mandatory pre-requisites needed to be able to run the application.
11
11
12
-
* Windows, Linux, AWS, GCP or MacOS
12
+
* Windows, Linux, AWS, GCP or macOS
13
13
* JDK 8+
14
14
* Maven
15
15
* Git
@@ -19,7 +19,7 @@ This section covers the mandatory pre-requisites needed to be able to run the ap
19
19
### _Quick Install_
20
20
This section describes how to download, install and run the application.
21
21
22
-
###### A. Using Maven on MacOS (recommended installation method)
22
+
###### A. Using Maven on macOS (recommended installation method)
23
23
24
24
(1). Clone the repo:
25
25
@@ -33,7 +33,8 @@ If you have installed [Redis](https://redis.io/docs/install/install-redis/) or [
33
33
sudo systemctl start redis
34
34
sudo systemctl start aerospike
35
35
```
36
-
Alternatively, you may start DB as Docker image. But before you should install [Docker Engine](https://docs.docker.com/engine/install/), if you don't have one.
36
+
Alternatively, you may start DB as Docker image.
37
+
You should install [Docker Engine](https://docs.docker.com/engine/install/) if you don't have one.
37
38
38
39
(2.1) Redis via Docker
39
40
1. Pull [Redis docker image](https://hub.docker.com/_/redis) of an appropriate version
@@ -46,7 +47,7 @@ docker pull redis:<version>
46
47
```bash
47
48
docker run -d --name redis -p <host_port>:<container_port> redis:<version>
48
49
49
-
// Example (the host will be defined as localhost by default)
50
+
# Example (the host will be defined as localhost by default)
50
51
docker run -d --name redis -p 6379:6379 redis:7.2.4
51
52
```
52
53
@@ -62,7 +63,7 @@ docker pull aerospike:<version>
62
63
```bash
63
64
docker run -d --name aerospike -e "NAMESPACE=<namespace>" -p <host_port>:<container_port> aerospike:<version>
64
65
65
-
// Example (the host will be defined as localhost by default)
66
+
# Example (the host will be defined as localhost by default)
66
67
docker run -d --name aerospike -e "NAMESPACE=prebid_cache" -p 3000:3000 aerospike:ce-6.4.0.2_1
@@ -195,7 +196,6 @@ A configuration object should be passed into the constructor of your custom repo
195
196
this.config = config;
196
197
}
197
198
}
198
-
199
199
```
200
200
201
201
Here is an example definition of a custom configuration property class. It is important to replace _'custom'_ with the correct cache implementation name (e.g. redis, memcached, aerospike, etc...). If Spring already provides a predefined configuration property prefix, please use that instead.
@@ -212,7 +212,6 @@ public class CustomPropertyConfiguration
0 commit comments