-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgradle.properties.template
More file actions
56 lines (49 loc) · 3.36 KB
/
Copy pathgradle.properties.template
File metadata and controls
56 lines (49 loc) · 3.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# ══════════════════════════════════════════════════════════════
# Victor AI - Gradle Configuration Template
# ══════════════════════════════════════════════════════════════
#
# Copy this file to gradle.properties and fill in your values.
# DO NOT commit gradle.properties with real URLs/keys!
#
# ══════════════════════════════════════════════════════════════
# Project-wide Gradle settings
org.gradle.jvmargs=-Xmx4096m -XX:MaxMetaspaceSize=1024m -Dfile.encoding=UTF-8
android.useAndroidX=true
kotlin.code.style=official
android.nonTransitiveRClass=true
# ══════════════════════════════════════════════════════════════
# 🌐 BACKEND API URL
# ══════════════════════════════════════════════════════════════
#
# REQUIRED: Victor AI needs a backend to function!
#
# Option 1: Deploy your own backend
# See: https://github.com/YOUR_USERNAME/victor-ai-backend
# Example: API_BASE_URL=https://your-domain.com/
#
# Option 2: Use ngrok for local development
# 1. Run backend: uvicorn main:app --reload
# 2. Expose: ngrok http 8000
# 3. Copy URL: API_BASE_URL=https://xyz.ngrok-free.dev/
#
# ⚠️ URL must end with slash (/)
# ══════════════════════════════════════════════════════════════
API_BASE_URL=https://example.com/
# ══════════════════════════════════════════════════════════════
# 🔐 DEMO KEY (Optional)
# ══════════════════════════════════════════════════════════════
#
# If your backend requires a demo key for /auth/resolve endpoint:
# DEMO_KEY=your_demo_key_here
#
# Leave empty if not needed or for contributors
# ══════════════════════════════════════════════════════════════
DEMO_KEY=
# ══════════════════════════════════════════════════════════════
# 👤 TEST USER ID (Development only)
# ══════════════════════════════════════════════════════════════
#
# Fallback user ID when no real account is logged in
# Used for local testing
# ══════════════════════════════════════════════════════════════
TEST_USER_ID=test_user