Skip to content

Commit b390cf9

Browse files
update package.json, remove alert from src/app/record/item/item/item.component.ts; update apiUrl in environment.* file to http://localhost:8585/restful/
1 parent 843fc00 commit b390cf9

6 files changed

Lines changed: 29 additions & 10 deletions

File tree

package.json

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,27 @@
11
{
2-
"name": "ng-dms-frontend",
3-
"version": "0.0.0",
2+
"name": "@everydatastore/everydatastore-frontend",
3+
"version": "1.5.2",
4+
"description": "The EveryDataStore Frontend is a low-code enterprise content management (ECM) tool designed for building powerful, structured, and collaborative data applications with minimal coding effort",
5+
"author": "EveryDataStore GmbH",
6+
"homepage": "https://everydatastore.org",
7+
"repository": {
8+
"type": "git",
9+
"url": "git+https://github.com/EveryDataStore/EveryDataStoreFrontend.git"
10+
},
11+
"bugs": {
12+
"url": "https://github.com/EveryDataStore/EveryDataStoreFrontend/issues"
13+
},
14+
"keywords": [
15+
"enterprise content management",
16+
"content management tool",
17+
"content management software",
18+
"ecm",
19+
"cms",
20+
"agular ecm",
21+
"agular cms",
22+
"frontend",
23+
"rest api"
24+
],
425
"scripts": {
526
"ng": "ng",
627
"start": "ng serve",
@@ -9,7 +30,7 @@
930
"lint": "ng lint",
1031
"e2e": "ng e2e"
1132
},
12-
"private": true,
33+
"private": false,
1334
"dependencies": {
1435
"@angular-builders/custom-webpack": "^17.0.1",
1536
"@angular/animations": "^17.3.11",

python

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/app/record/item/item/item.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,6 @@ export class ItemComponent implements OnInit, AfterContentChecked, OnDestroy {
317317
await this.apiService.deleteRecordItem(this.recordItemSlug);
318318
await this.routingService.toRecordItemsList(this.recordSlug, this.getListpage());
319319
if(this.isCalendarRecordSet){
320-
alert(11111);
321320
this.apiService.cacheCalendar({
322321
recordSlug: this.recordSlug
323322
});

src/environments/environment.prod.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ import { EnvironmentSettings } from './environment-settings';
22

33
export const environment: EnvironmentSettings = {
44
production: true,
5-
apiUrl: 'https://your-backend-url.everydatastore.org/restful/',
6-
demoMode: false
5+
apiUrl: 'http://localhost:8585/restful/',
6+
demoMode: false
77
};

src/environments/environment.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import { localEnvironmentSettings } from './environment.local';
77

88
export const environmentDev: EnvironmentSettings = {
99
production: false,
10-
apiUrl: 'http://localhost:4200/restful/',
10+
apiUrl: 'http://localhost:8585/restful/',
1111
debugQueryParams: [{name: 'XDEBUG_SESSION_START', value: 'PHPSTORM'}],
12-
itemsPerPage: 12,
12+
itemsPerPage: 10,
1313
demoMode: false
1414
};
1515

src/environments/example-environment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
export const environment = {
66
production: false,
7-
apiUrl: 'http://localhost:8080/restful/',
7+
apiUrl: 'http://localhost:8585/restful/',
88
debugQueryParams: [{name: 'XDEBUG_SESSION_START', value: 'PHPSTORM'}]
99
};
1010

0 commit comments

Comments
 (0)