Skip to content

Commit 5c0f8f3

Browse files
committedJan 16, 2025
Merge branch 'develop' into pr/francis2tm/2082
2 parents c3f8617 + 3b334cb commit 5c0f8f3

File tree

182 files changed

+4747
-2128
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

182 files changed

+4747
-2128
lines changed
 

‎.env.example

+17-3
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,14 @@ PGLITE_DATA_DIR= #../pgLite/ if selecting a directory --- or memory:// if
99

1010
# Eliza Port Config
1111
SERVER_PORT=3000
12+
VITE_SERVER_PORT=${SERVER_PORT}
1213

1314
# Supabase Configuration
1415
SUPABASE_URL=
1516
SUPABASE_ANON_KEY=
1617

17-
# Remote character url (optional)
18-
REMOTE_CHARACTER_URL=
18+
# Comma separated list of remote character urls (optional)
19+
REMOTE_CHARACTER_URLS=
1920

2021
###############################
2122
#### Client Configurations ####
@@ -372,7 +373,7 @@ SQUID_SDK_URL=https://apiplus.squidrouter.com # Default: https://apiplus.squidro
372373
SQUID_INTEGRATOR_ID= # get integrator id through https://docs.squidrouter.com/
373374
SQUID_EVM_ADDRESS=
374375
SQUID_EVM_PRIVATE_KEY=
375-
SQUID_API_THROTTLE_INTERVAL= # Default: 0; Used to throttle API calls to avoid rate limiting (in ms)
376+
SQUID_API_THROTTLE_INTERVAL=1000 # Default: 1000; Used to throttle API calls to avoid rate limiting (in ms)
376377

377378
# TEE Configuration
378379
# TEE_MODE options:
@@ -609,3 +610,16 @@ AKASH_MANIFEST_VALIDATION_LEVEL=strict
609610
# Quai Network Ecosystem
610611
QUAI_PRIVATE_KEY=
611612
QUAI_RPC_URL=https://rpc.quai.network
613+
614+
# Instagram Configuration
615+
INSTAGRAM_DRY_RUN=false
616+
INSTAGRAM_USERNAME= # Account username
617+
INSTAGRAM_PASSWORD= # Account password
618+
INSTAGRAM_APP_ID= # Instagram App ID is required
619+
INSTAGRAM_APP_SECRET= # Instagram App Secret is required
620+
INSTAGRAM_BUSINESS_ACCOUNT_ID= # Optional Business Account ID for additional features
621+
INSTAGRAM_POST_INTERVAL_MIN=60 # Default: 60 minutes
622+
INSTAGRAM_POST_INTERVAL_MAX=120 # Default: 120 minutes
623+
INSTAGRAM_ENABLE_ACTION_PROCESSING=false # Enable/disable action processing
624+
INSTAGRAM_ACTION_INTERVAL=5 # Interval between actions in minutes
625+
INSTAGRAM_MAX_ACTIONS=1 # Maximum number of actions to process at once

‎.github/workflows/generate-readme-translations.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,15 @@ jobs:
2424
{ code: "TH", name: "Thai" },
2525
{ code: "TR", name: "Turkish" },
2626
{ code: "VI", name: "Vietnamese" },
27+
{ code: "AR", name: "Arabic" },
28+
{ code: "RS", name: "Srpski" },
29+
{ code: "TG", name: "Tagalog" },
30+
{ code: "PL", name: "Polski" },
31+
{ code: "HU", name: "Hungarian" },
32+
{ code: "FA", name: "Persian" },
33+
{ code: "RO", name: "Romanian" },
34+
{ code: "GR", name: "Greek" },
35+
{ code: "NL", name: "Dutch" },
2736
]
2837
permissions:
2938
contents: write
@@ -53,7 +62,7 @@ jobs:
5362
"content_path": "README.md"
5463
}
5564
],
56-
"save_path": "README_${{ matrix.language.code }}.md",
65+
save_path: "i18n/readme/README_${{ matrix.language.code }}.md",
5766
"model": "gpt-4o"
5867
}
5968

0 commit comments

Comments
 (0)
Please sign in to comment.