https://github.com/balancer/frontend-v3
Official UI application for the Balancer protocol.
https://github.com/balancer/frontend-v3
Last synced: about 1 year ago
JSON representation
Official UI application for the Balancer protocol.
- Host: GitHub
- URL: https://github.com/balancer/frontend-v3
- Owner: balancer
- License: mit
- Created: 2023-06-30T08:56:37.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-19T08:57:12.000Z (over 1 year ago)
- Last Synced: 2024-09-19T12:10:53.795Z (over 1 year ago)
- Language: TypeScript
- Homepage: https://balancer.fi
- Size: 27.3 MB
- Stars: 7
- Watchers: 4
- Forks: 11
- Open Issues: 94
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Balancer frontend V3 (⚠️DEPRECATED)
This repo has moved into our [frontend monorepo](https://github.com/balancer/frontend-monorepo).
## Getting Started
_This project uses `pnpm`, if you haven't already installed it you can find the documentation here:
https://pnpm.io/installation_
To setup the development environment, first clone the repo:
```bash
git clone https://github.com/balancer/frontend-v3.git && cd frontend-v3
```
Copy and rename the `.env.example` file to `.env.local`:
```bash
cp .env.example .env.local
```
Next, install dependencies:
```bash
pnpm install
```
Then, run the development server:
```bash
pnpm dev
```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
## Testing
See [TESTING.md](./test/TESTING.md).
## Developing in Windows
To develop in Windows you need to use WSL2. Learn more about it
[here](https://learn.microsoft.com/en-us/windows/wsl/about).
With WSL2 all environment variables will be correctly set without having to use `cross-env`.