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

  1. Push repo to GitHub
  2. Import into Vercel
  3. Set NEXT_PUBLIC_CLUSTER and NEXT_PUBLIC_RPC_URL
  4. 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.