Added env file
This commit is contained in:
parent
7c47036543
commit
8b273171f2
4 changed files with 25 additions and 5 deletions
|
@ -24,6 +24,6 @@ export const gasTypes = [
|
|||
type: "GPLc"
|
||||
}
|
||||
];
|
||||
export const mapboxToken = 'pk.eyJ1IjoiZGFya291IiwiYSI6ImNrNzkwdmlsdTBtMmwzZnM0ZmI4Z3h4czIifQ.GU2CdcMiKiApHNhI0ylGtQ';
|
||||
export const baseApiUrl = 'https://api.carburants.darkou.fr/v1/';
|
||||
export const radius = 20000;
|
||||
export const mapboxToken = process.env.REACT_APP_MAPBOX_TOKEN;
|
||||
export const baseApiUrl = process.env.REACT_APP_API_URL;
|
||||
export const radius = Number(process.env.REACT_APP_MAP_RADIUS);
|
Loading…
Add table
Add a link
Reference in a new issue