Skip to content

Commit dc54bf3

Browse files
committed
defined ENV_CONTENT in makefile
1 parent f084b7e commit dc54bf3

1 file changed

Lines changed: 14 additions & 1 deletion

File tree

Makefile

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,17 @@
11
# Define directories
22
DIRS := examples/microservices/auth examples/microservices/client examples/microservices/client-dev \
33
examples/microservices/common examples/microservices/event-bus \
4-
examples/microservices/inventory examples/microservices/items
4+
examples/microservices/inventory examples/microservices/items
5+
6+
# Define the content of the .env file
7+
define ENV_CONTENT
8+
CHRONOS_DB = MongoDB
9+
CHRONOS_URI = mongodb+srv://chronoschild15:Codesmith999@cluster0.abrbjlj.mongodb.net/
10+
CHRONOS_GRAFANA_API_KEY = Bearer glsa_89T0MEpiZfeNZLthW3mj8vMb7aXu9RTS_6ddf37da
11+
MONGO_URI_AUTH = mongodb+srv://chronoschild15:Codesmith999@cluster0.abrbjlj.mongodb.net/
12+
MONGO_URI_ITEMS = mongodb+srv://chronoschild15:Codesmith999@cluster0.abrbjlj.mongodb.net/
13+
MONGO_URI_INVENTORY = mongodb+srv://chronoschild15:Codesmith999@cluster0.abrbjlj.mongodb.net/
14+
MONGO_URI_ORDERS = mongodb+srv://chronoschild15:Codesmith999@cluster0.abrbjlj.mongodb.net/
15+
JWT_KEY = thisStringDoesNotMatterItJustNeedsToBeDefined
16+
JWT_LIFETIME = 1d
17+
endef

0 commit comments

Comments
 (0)