-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path.env.dev
28 lines (26 loc) · 1.16 KB
/
.env.dev
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
################################################################################
# This file contains environment variable overrides useful for local
# development and testing - specifically, when you want to run a development
# server using the same mock endpoints that are used for integration tests.
#
# This file is sourced by Vite when running `npm run dev -- --mode=dev`
#
# NOTE: This file is checked-in to version control - it should NEVER include
# secrets (the API keys included below are intended for public API access)
################################################################################
TS_PUBLIC_FRONTEND_VERSION_TAG=dev
TS_PUBLIC_BACKEND_URL=http://localhost:5173/api
TS_PUBLIC_TYPESENSE_API_URL=http://localhost:5173/api/typesense
TS_PRIVATE_ADMIN_PW=youbetcha # to match normal development value
TS_PUBLIC_STRATEGIES=`[
{
"id": "enzyme-polygon-matic-usdc",
"name": "MATIC-USD breakout on Uniswap v3",
"url": "http://localhost:5173/api/strategies/enzyme-polygon-matic-usdc"
},
{
"id": "enzyme-polygon-multipair",
"name": "Multipair breakout strategy on Uniswap v3",
"url": "http://localhost:5173/api/strategies/enzyme-polygon-multipair"
}
]`