Frontend setup
| Property | Value |
|---|---|
| URL | vexome.com |
| Source | github.com/axioprotocol/vexofront |
Self-hosting
git clone https://github.com/axioprotocol/vexofront.git
cd vexofront
npm install
Create .env.local:
NEXT_PUBLIC_CLUSTER=devnet
NEXT_PUBLIC_RPC_URL=https://api.devnet.solana.com
Run:
npm run dev # development
npm run build # production build
Deploy to Vercel
- Push repo to GitHub
- Import into Vercel
- Set
NEXT_PUBLIC_CLUSTERandNEXT_PUBLIC_RPC_URL - Deploy
No backend required
The frontend has no server-side API, no database, no auth. Every read goes directly to Solana via RPC. Every write is a wallet-signed transaction. It can be hosted on any static file server.