https://github.com/bitfinexcom/bfx-hf-ui-core
https://github.com/bitfinexcom/bfx-hf-ui-core
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/bitfinexcom/bfx-hf-ui-core
- Owner: bitfinexcom
- License: apache-2.0
- Created: 2021-07-08T11:07:37.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2025-03-26T12:38:36.000Z (about 1 year ago)
- Last Synced: 2025-04-11T06:14:47.342Z (about 1 year ago)
- Language: JavaScript
- Size: 6.58 MB
- Stars: 3
- Watchers: 9
- Forks: 13
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Bitfinex Honey Web App
# Development
## Run the project
```
git clone https://github.com/bitfinexcom/bfx-hf-ui-core.git
cd bfx-hf-ui-core
npm install
npm start
```
## Environment
Standard Environment variables include:
| name | values | description |
| ------------------- | ------------------- | -------------------------------------- |
| CI_ENVIRONMENT_NAME | staging\|production | Use to set config based on environment |
## Test production/staging build
Install serve package globally
```
npm install -g serve
```
Build and serve it
```
CI_ENVIRONMENT_NAME=staging npm run build
# CI_ENVIRONMENT_NAME=production npm run build
serve -p 3000 -s build
```