This is a Next.js project bootstrapped with create-next-app
.
First, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
Open http://localhost:3000 with your browser to see the result.
Create a new Postgres database on Vercel and paste the environment variables. Follow this tutorial.
Initialize and seed the database using the schema.sql
and seed.sql
files in the /db
directory.
Add CoinMarketCap and OpenAI keys in the environment variables.
- Fetch data from CoinMarketCap and update the static data in the UI.
- Simulate 10 games and store the results in the database using
/api/data
. - Fund the user's account using BTC (and convert to USD).
- Create an AI feature.
- Make the bet amount dynamic.
- Add a Performance Analytics Modal.