Skip to content

Commit

Permalink
Issue #IQ-802 merge: Fix local setup for dev and testing
Browse files Browse the repository at this point in the history
Issue #IQ-802 fix: Fix local setup for dev and testing
  • Loading branch information
AmiableAnil authored May 28, 2024
2 parents 40173eb + eaa9dd4 commit e15f5d4
Show file tree
Hide file tree
Showing 12 changed files with 36,266 additions and 32,036 deletions.
2 changes: 1 addition & 1 deletion projects/quml-demo-app/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { DataService } from './services/data.service';
styleUrls: ['./app.component.css']
})
export class AppComponent implements OnInit {
contentId = 'do_2138622515299368961170';
contentId = 'do_11395276467516211211';
playerConfig: any;

constructor(private dataService: DataService) { }
Expand Down
4 changes: 2 additions & 2 deletions projects/quml-demo-app/src/app/app.constant.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export const ApiEndPoints = {
getContent: '/api/content/v1/read/',
getQuestionSetHierarchy: '/action/questionset/v2/hierarchy/',
questionSetRead: '/action/questionset/v2/read/',
getQuestionSetHierarchy: '/learner/questionset/v2/hierarchy/',
questionSetRead: '/api/questionset/v2/read/',
questionList: '/api/question/v2/list',
}
2 changes: 1 addition & 1 deletion projects/quml-demo-app/src/environments/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

export const environment = {
production: false,
baseUrl: 'https://dev.inquiry.sunbird.org',
baseUrl: 'https://dev.sunbirded.org',
};

/*
Expand Down
6 changes: 3 additions & 3 deletions projects/quml-demo-app/src/proxy.conf.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"/api/*": {
"target": "https://dev.inquiry.sunbird.org",
"target": "https://dev.sunbirded.org",
"secure": false,
"logLevel": "debug",
"changeOrigin": true
},
"/action/*": {
"target": "https://dev.inquiry.sunbird.org",
"target": "https://dev.sunbirded.org",
"secure": false,
"logLevel": "debug",
"changeOrigin": true
},
"/assets/*": {
"target": "https://dev.inquiry.sunbird.org",
"target": "https://dev.sunbirded.org",
"secure": false,
"logLevel": "debug",
"changeOrigin": true
Expand Down
Loading

0 comments on commit e15f5d4

Please sign in to comment.