Skip to content

Commit

Permalink
update env.example
Browse files Browse the repository at this point in the history
  • Loading branch information
Foysal Zafree committed Aug 11, 2021
1 parent ebe51c6 commit 85353c5
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 21 deletions.
39 changes: 22 additions & 17 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
#PROJECT SETTINGS
PROJECT_NAME=bronx
PROJECT_TITLE=Bronx
PROJECT_DESCRIPTION=Bronx Colors Bangladesh is a color cosmetics brand represented by AKS Global Trading Limited. AGTL reserves the exclusive rights to Import, Distribute and Resell Bronx Colors Products in Bangladesh.
PROJECT_FOOTER_TEXT=Bronx Colors Bangladesh is a color cosmetics brand represented by AKS Global Trading Limited. AGTL reserves the exclusive rights to Import, Distribute and Resell Bronx Colors Products in Bangladesh.
PROJECT_ADDRESS_TEXT=2, Rupayan Prime, AKS Khan Holdings Limited, Ground Floor, Road 7, Dhanmondi
PROJECT_PHONE=+8801841232270
PROJECT_FACEBOOK=https://www.facebook.com/bronx.bd/
PROJECT_INSTAGRAM=https://www.instagram.com/bronx.bd/
PROJECT_NAME=storegram
PROJECT_TITLE=Storegram
PROJECT_DESCRIPTION=Storegram project discription
PROJECT_FOOTER_TEXT=Storegram short discription here lorem ipsum is simply dummy text of the printing and typesetting industry of lorem ipsum has been the industrys standard dummy text ever since.
PROJECT_ADDRESS_TEXT=Company address
PROJECT_PHONE=+880 1847 474747
PROJECT_EMAIL=[email protected]
PROJECT_COPYRIGHT=Storegram Inc.
# PROJECT_FACEBOOK=https://www.facebook.com/bronx.bd/
# PROJECT_INSTAGRAM=https://www.instagram.com/bronx.bd/

# MODES
APP_MODE=customer
Expand All @@ -18,25 +20,28 @@ PORT=3000

# URLS
BASE_URL=http://localhost:3000
API_ROOT=http://store.dglink.co
API_ROOT=https://store.dglink.co
# API_ROOT=https://admin.bronxcolors.com.bd
ENV_URL=http://localhost:3000/env-flags.json
ASSET_URL_BASE=https://store.dglink.co/storage/media/
# ASSET_URL_BASE=https://store.dglink.co/storage/media/
# ASSET_URL_BASE=https://admin.bronxcolors.com.bd/storage/media/
# BKASH_PAYMENT_URL=https://store.unimart.deligram.com/payment/bKash/checkout
ASSET_URL_BASE=http://store.dglink.co/storage/media/

# ID
FB_APP_ID=1800468850244241
GA_ID=UA-115149029-1
FB_PIXEL_ID=219462538827523

# ENABLE/DISABLE
FB_PIXEL_DISABLE=true
DISABLE_AGENT_DELIVERY_IN_CUSTOMER_MODE=true
DISABLE_LOCKER_DELIVERY=true
DISABLE_HUB_DELIVERY=true
# FB_PIXEL_DISABLE=true
# DISABLE_AGENT_DELIVERY_IN_CUSTOMER_MODE=true
# DISABLE_LOCKER_DELIVERY=true
DISABLE_HUB_DELIVERY=false
DISABLE_API_CACHE=false
ENABLE_BKASH_ON_DELIVERY=false
ENABLE_ADVANCE_PAYMENT_AGENT_PICKUP=false
SHOW_DONATION=false
# ENABLE_BKASH_ON_DELIVERY=false
# ENABLE_ADVANCE_PAYMENT_AGENT_PICKUP=false
# SHOW_DONATION=false

NEXT_VACATION_PERIOD=2019-08-05,2019-08-17
BKASH_CASHBACK_OFFER=false
Expand Down
8 changes: 4 additions & 4 deletions pages/_lang/checkout/delivery-option.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@
<div :class="$style.field">
<label :class="$style.fieldLabel">{{ i18nText.deliveryMethod }}</label>
<div :class="$style.dmOption">
<button :class="[$style.dmOptionBtn, $style.btn, $style.btnLine, $style.dmOptionBtnActive]">Home Delivery</button>
<button :class="[$style.dmOptionBtn, $style.btn, $style.btnLine]">Pickup from outlet</button>
<button :class="[$style.dmOptionBtn, $style.btn, $style.btnLine, $style.dmOptionBtnActive]" @click="pickedDeliveryMethod = PICKED_DELIVERY_METHODS.CUSTOMER">Home Delivery</button>
<button :class="[$style.dmOptionBtn, $style.btn, $style.btnLine]" @click="pickedDeliveryMethod = PICKED_DELIVERY_METHODS.HUB">Pickup from outlet</button>
</div>
<div :class="$style.dmOptionBody">
<div :class="$style.dmOptionBody" v-if="isDeliveryMethodHome">
<p :class="[$style.copy, $style.copyDeliveryCharge]">Delivery charge Tk. 20</p>
<div :class="[$style.field, {[$style.fieldError]: errors.delivery_address }, {[$style.fieldSuccess]: errors.delivery_address === false }]">
<label :class="$style.fieldLabel">{{ i18nText.homeDeliveryAddressLabel }}</label>
Expand Down Expand Up @@ -108,7 +108,7 @@
<p :class="$style.fieldValidation" v-if="errors.receiver_number">{{ errors.receiver_number }}</p>
</div>
</div>
<div>Input field</div>
<div v-if="isDeliveryMethodHub">Input field</div>
</div>
</template>

Expand Down

0 comments on commit 85353c5

Please sign in to comment.