-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.js
More file actions
26 lines (22 loc) · 766 Bytes
/
config.js
File metadata and controls
26 lines (22 loc) · 766 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
/**
* SPPU Study Material Generator Configuration
* Author: Parth Sali
*
* This file contains the configuration for generating study material documentation.
* Update the values below for your specific branch.
*/
module.exports = {
// API Configuration
API_BASE_URL: "https://api.learnverxe.com/api/v1",
VIEWER_BASE_URL: "https://learnverxe.com/viewer",
// Branch Configuration
// Change this to your branch code: IT, CS, ENTC, MECH, CIVIL, ELEC
BRANCH_CODE: "",
// Telegram Group
// Update this to your branch's Telegram group URL
TELEGRAM_GROUP: "",
// Automation Configuration
// Set this to true to enable automatic weekly updates via GitHub Actions
// Keep this false for the template repository
ENABLE_AUTO_UPDATE: false,
};