File tree 2 files changed +53
-3
lines changed
2 files changed +53
-3
lines changed Original file line number Diff line number Diff line change @@ -21,10 +21,20 @@ RUN pnpm i
21
21
ADD packages /app/packages
22
22
RUN pnpm i
23
23
24
- # Add the environment variables
24
+ # Add agent
25
+ ADD agent /app/agent
26
+ RUN pnpm i
27
+
28
+ # Add the scripts and characters
25
29
ADD scripts /app/scripts
26
30
ADD characters /app/characters
27
- ADD .env /app/.env
31
+
32
+ # Build the project
33
+ RUN pnpm build
34
+
35
+ EXPOSE 3000
36
+
37
+ ENV PORT=3000
28
38
29
39
# Command to run the container
30
- CMD ["tail" , "-f" , "/dev/null" ]
40
+ CMD ["tail" , "-f" , "/dev/null" ]
Original file line number Diff line number Diff line change
1
+ services :
2
+ tee :
3
+ command : ["pnpm", "start"]
4
+ image : hashwarlock/tee-agent:latest
5
+ stdin_open : true
6
+ tty : true
7
+ volumes :
8
+ - /var/run/tappd.sock:/var/run/tappd.sock
9
+ - tee:/app/packages/client-twitter/src/tweetcache
10
+ - tee:/app/db.sqlite
11
+ environment :
12
+ - OPENAI_API_KEY=
13
+ - REDPILL_API_KEY=
14
+ - ELEVENLABS_XI_API_KEY=
15
+ - ELEVENLABS_MODEL_ID=eleven_multilingual_v2
16
+ - ELEVENLABS_VOICE_ID=21m00Tcm4TlvDq8ikWAM
17
+ - ELEVENLABS_VOICE_STABILITY=0.5
18
+ - ELEVENLABS_VOICE_SIMILARITY_BOOST=0.9
19
+ - ELEVENLABS_VOICE_STYLE=0.66
20
+ - ELEVENLABS_VOICE_USE_SPEAKER_BOOST=false
21
+ - ELEVENLABS_OPTIMIZE_STREAMING_LATENCY=4
22
+ - ELEVENLABS_OUTPUT_FORMAT=pcm_16000
23
+ - TWITTER_DRY_RUN=false
24
+ - TWITTER_USERNAME=
25
+ - TWITTER_PASSWORD=
26
+ - TWITTER_EMAIL=
27
+ - X_SERVER_URL=https://api.red-pill.ai/v1
28
+ - BIRDEYE_API_KEY=
29
+ - SOL_ADDRESS=So11111111111111111111111111111111111111112
30
+ - SLIPPAGE=1
31
+ - RPC_URL=https://api.mainnet-beta.solana.com
32
+ - HELIUS_API_KEY=
33
+ - SERVER_PORT=3000
34
+ - WALLET_SECRET_SALT=secret_salt
35
+ ports :
36
+ - " 3000:80"
37
+ restart : always
38
+
39
+ volumes :
40
+ tee :
You can’t perform that action at this time.
0 commit comments