Skip to content

Commit 74f4cd4

Browse files
committed
Beautify config comments
1 parent 4609b27 commit 74f4cd4

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

config.ts

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
import type { Config } from "@/types/config";
22

33
const config: Config = {
4-
// Customize the port Interstellar runs on (Default: 8080)
5-
port: 8080,
4+
// Server Configuration
5+
port: 8080, // The port on which Interstellar runs (Default: 8080)
66

7-
// Protect your Instance with logins (Optional)
7+
// Authentication Configuration (Optional)
88
auth: {
9-
challenge: false, // Password protection (Default: False)
9+
// Enable password protection for your instance.
10+
// Set challenge to true to require users to log in.
11+
challenge: false,
12+
13+
// Format: username: "password",
14+
// IMPORTANT: Replace default credentials before deployment
1015
users: {
11-
interstellar: "password", // Add usernames and passwords here
16+
interstellar: "password",
1217
},
1318
},
1419
};

0 commit comments

Comments
 (0)