Skip to content

Change Currency

Akram El Assas edited this page May 25, 2024 · 19 revisions

To change the currency, follow these instructions:

Frontend

Open frontend/.env and change REACT_APP_BC_CURRENCY and REACT_APP_BC_STRIPE_CURRENCY_CODE settings.

By default, it is set to:

REACT_APP_BC_CURRENCY=$
REACT_APP_BC_STRIPE_CURRENCY_CODE=USD

For example, if you want to change to euro:

REACT_APP_BC_CURRENCY=€
REACT_APP_BC_STRIPE_CURRENCY_CODE=EUR

On production, you need to rebuild the frontend to take apply changes.

Backend

Open backend/.env and change REACT_APP_BC_CURRENCY setting.

By default, it is set to:

REACT_APP_BC_CURRENCY=$

On production, you need to rebuild the backend to take apply changes.

Mobile App

Open mobile/.env and change BC_CURRENCY and BC_STRIPE_CURRENCY_CODE settings.

By default, it is set to:

BC_CURRENCY=$
BC_STRIPE_CURRENCY_CODE=USD

For example, if you want to change to euro:

BC_CURRENCY=€
BC_STRIPE_CURRENCY_CODE=EUR

On production, you need to rebuild the mobile app to take apply changes.

Clone this wiki locally