-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
35 lines (28 loc) · 857 Bytes
/
.env.example
File metadata and controls
35 lines (28 loc) · 857 Bytes
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
# Website
NEXT_PUBLIC_WEBSITE_NAME="Clippy"
NEXT_PUBLIC_WEBSITE_DESCRIPTION="Secure ShareX image hosting with fast uploads and extensive embed customization capabilities."
NEXT_PUBLIC_WEBSITE_LOGO="/logo.png"
NEXT_PUBLIC_WEBSITE_URL=http://localhost:3000
NEXT_PUBLIC_SHOW_METRICS=true
# Postgres
DATABASE_URL="postgres://clippy:clippy@localhost:5432/clippy"
# Better Auth
BETTER_AUTH_SECRET="CHANGE_ME"
NEXT_PUBLIC_ALLOW_REGISTRATIONS=true
# File Storage
STORAGE_PROVIDER="LOCAL"
# Local Storage
STORAGE_LOCAL_PATH="./uploads"
# S3 Storage
STORAGE_S3_ENDPOINT="localhost"
STORAGE_S3_PORT=9000
STORAGE_S3_USE_SSL=false
STORAGE_S3_ACCESS_KEY="clippysupersecretpassword"
STORAGE_S3_SECRET_KEY="clippysupersecretpassword"
STORAGE_S3_BUCKET="clippy"
# File Upload
FILE_ID_LENGTH=8
ALLOWED_MIME_TYPES=*/*
COMPRESS_IMAGES=true
# Short URL
SHORT_URL_LENGTH=6