Skip to content

Commit 8801724

Browse files
committed
add config ip
1 parent f6d9bfd commit 8801724

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

.env

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
NG_APP_IP_SERVER=http://localhost:8888/api
2+
3+
GOOGLE_SCRIPT_CHECKPAID =
4+
'https://script.googleusercontent.com/macros/echo?user_content_key=AehSKLiSTEPXJUEDVFRBeikCncfxjkIH_OLKYluFR7IYUCmKD-8-VJfBAgtNUGqzWGgigINh_SmLLE007TRLbg-VDliF4paAnD4fG2dUDuN-mIT7nElG2wu61auwEXYq16Hnuc7bKDVihCSHJzHn7_JUz-dZQUDEBRspKdJMNiHrryl4_ds2VUCSdHj0oWxoDDKcQkoX0XfNrVNTHFc3GKSet8USe_lM4p8hjeyRc_LAbWU_ywX7BhXL88Df7JkJtco8hJ_vDJl3XSd_QVgfCqXrhzQgodAjg8KOKSuOp-y-&lib=MiJ6PZlEM574xunmtReGn1uN-aGJIc-mt';

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ testem.log
4242
Thumbs.db
4343

4444
# Environment files
45-
# /src/environments/*
45+
/src/environments/*
4646
.scannerwork/
4747

src/app/core/services/config-service/api.enpoints.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { environment } from '../../../../environments/environment';
1+
// import { environment } from '../../../../environments/environment';
22
import { EnumType } from '../../models/data-handle';
33
import {
44
FilterOrgs,
@@ -10,7 +10,7 @@ export const version = '/v1';
1010

1111
export const API_CONFIG = {
1212
BASE_URLS: {
13-
MAIN_API: environment.IP_SERVER + version,
13+
MAIN_API: 'http://localhost:8888/api' + version,
1414
SECONDARY_API: '',
1515
},
1616
ENDPOINTS: {

src/app/features/organization/pages/organization-management/organization-management.component.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@
6161
border: none;
6262
cursor: pointer;
6363
transition: all 0.3s ease;
64+
6465
&.primary {
6566
background: var(--button-color);
6667
color: var(--reverse-color-text);

0 commit comments

Comments
 (0)