Community Legacy Support Portal for HaloFi (prev. GoodGhosting) descentralized products: HaloFi Challenges & HaloFi Save It provides guidance for users to withdraw their funds via descentralized infrastructure. Users can view challenges and find withdrawal tutorials, but updates after the snapshot are not included.
To allow users to withdraw funds from the descentralized infrastructure HaloFi products used, users can find use one of the following options:
- Legacy Site - hosted on halofi.me - available till 20-Sep-2029
- Legacy Site - descentralized hosted on IPFS - available via IPFS infrastructure for as long as the IPFS descentralized network operates. IPFS Hash:
bafybeicxrlieki626whgkmmtszi4obd3g73ux77wbk2mvja6rg377dqynq
For additional information:
Find below technical information about this project.
Inside of your React project, you'll see the following folders and files:
/
├── public/
│ └── favicon.svg
├── src/
│ ├── assets/
│ ├── main.tsx
│ ├── App.tsx
│ └── App.css
├── index.html
├── tsconfig.json
├── vide.config.ts
└── package.json
If you want to learn more about vite and react you can checkout Vite Documentation.
All commands are run from the root of the project, from a terminal:
| Command | Action |
|---|---|
pnpm install |
Installs dependencies |
pnpm run dev |
Starts local dev server at localhost:3000 |
pnpm run build |
Build your production site to ./dist/ |
pnpm run preview |
Preview your build locally, before deploying |
pnpm run lint ... |
Run Linter |
You can configure this site deployment using Fleek CLI and running:
> fleek sites init
WARN! Fleek CLI is in beta phase, use it under your own responsibility
? Choose one of the existing sites or create a new one. ›
❯ Create a new site
It will prompt you for a name, dist directory location & build command
name: How you want to name the sitedist: The output directory where the site is located, for this template it'sdistbuild command: Command to build your site, this will be used to deploy the latest version either by CLI or Github Actions
After configuiring your fleek.json file, you can deployt the site by running
fleek sites deploy
After running it you will get an output like this:
WARN! Fleek CLI is in beta, use it at your own discretion
> Success! Deployed!
> Site IPFS CID: QmP1nDyoHqSrRabwUSrxRV3DJqiKH7b9t1tpLcr1NTkm1M
> You can visit through the gateway:
> https://ipfs.io/ipfs/QmP1nDyoHqSrRabwUSrxRV3DJqiKH7b9t1tpLcr1NTkm1M
- Continuous Integration (CI):
fleek sites ciDocumentation. - Adding custom domains:
fleek domains createDocumentation.
This template has been configured to produce a static output.
// vite.config.ts
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react-swc'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
base: "./",
})This means that assets will be pre-fixed with ./, you can learn more about it in Vite Documentation
Feel free to check React documentation or Vite Documentation.
