We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 362809a commit 3432d2cCopy full SHA for 3432d2c
1 file changed
README.md
@@ -8,17 +8,25 @@ node -v: v20.17.0
8
Google Gemini API key
9
10
# Build project:
11
+```
12
npm install
13
npm run build
14
15
16
# Start project locally:
17
18
npm run start
19
20
21
# Build docker image:
22
23
docker build -t tarot-guide .
24
25
26
# Run application:
27
-create mysecrets.env file with GEMINI_API_KEY=<YOUR API KEY>
28
+create mysecrets.env file with ```GEMINI_API_KEY=<YOUR API KEY>```
29
30
31
docker run -d --env-file ./mysecrets.env --restart always -p 3000:3000 tarot-guide
32
0 commit comments