Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
114 changes: 114 additions & 0 deletions Universal Environment
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

file starts with a backtick character that makes the entire file invalid

Suggested change
`
Prompt To Fix With AI
This is a comment left during a code review.
Path: Universal Environment
Line: 1:1

Comment:
file starts with a backtick character that makes the entire file invalid

```suggestion

```

How can I resolve this? If you propose a fix, please make it concise.


============================

CORE APP CONFIG

============================
APP_ENV=production
APP_PORT=8080
APP_URL=http://localhost:8080
APP_NAME=unified-assistant-system
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

APP_NAME=unified-assistant-system suggests this environment file may be from a different project entirely - the actual project is called "simstudio" (per package.json)

Prompt To Fix With AI
This is a comment left during a code review.
Path: Universal Environment
Line: 11:11

Comment:
`APP_NAME=unified-assistant-system` suggests this environment file may be from a different project entirely - the actual project is called "simstudio" (per `package.json`)

How can I resolve this? If you propose a fix, please make it concise.


============================

AUTH & SECURITY

============================
JWTSECRET=yourjwtsecrethere
ENCRYPTIONKEY=your32byteencryptionkey_here
HASHSALT=yourhashsalthere

============================

DATABASE

============================
DB_HOST=localhost
DB_PORT=5432
DBUSER=piuser
DBPASSWORD=pipassword
DBNAME=assistantdb

============================

FIREBASE

============================
FIREBASEPROJECTID=yourprojectid
FIREBASEPRIVATEKEY=yourprivatekey
FIREBASECLIENTEMAIL=yourclientemail

============================

TELEPHONY / VOIP

============================
TWILIOACCOUNTSID=yourtwiliosid
TWILIOAUTHTOKEN=yourtwiliotoken
TWILIOPHONENUMBER=yourtwilionumber

============================

EMAIL SERVICE

============================
SMTP_HOST=smtp.gmail.com
SMTP_PORT=587
SMTPUSER=youremail
SMTPPASS=youremailapppassword

============================

AI / LLM PROVIDERS

============================
OPENAIAPIKEY=youropenaikey
ANTHROPICAPIKEY=youranthropickey
AZUREOPENAIKEY=yourazurekey
AZUREOPENAIENDPOINT=yourazureendpoint

============================

LOGGING & AUDIT

============================
LOG_LEVEL=info
AUDITLOGPATH=/var/log/assistant/audit.log

============================

CACHE / REDIS

============================
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_PASSWORD=

============================

OPPORTUNITY HUNTER

============================
HUNTER_MODE=active
HUNTERSCANINTERVAL=3600
HUNTERNOTIFYEMAIL=your_email

============================

ACCOUNT MANAGER

============================
ACCOUNTMANAGERMODE=enabled
ACCOUNTMANAGERAUDIT=true

============================

HARDWARE / PI INTEGRATION

============================
PIDEVICEID=$(cat /etc/machine-id)
PIGPIOENABLED=false
`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

file ends with an invalid backtick and separators that corrupt the environment file format

Suggested change
`
Prompt To Fix With AI
This is a comment left during a code review.
Path: Universal Environment
Line: 112:112

Comment:
file ends with an invalid backtick and separators that corrupt the environment file format

```suggestion
```

How can I resolve this? If you propose a fix, please make it concise.


---