This is a Next.js project bootstrapped with create-next-app
.
This is a web app that allows you to play many different games in your browser, inspired by classic arcade games.
Live version can be found here: http://34.198.228.75:3000/
First, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
docker build -t pixel-arcade-docker .
docker run -p 3000:3000 pixel-arcade-docker
With a PostgreSQL database setup, run the following to install and/or setup Prisma
To install:
npm install prisma @prisma/client
npx prisma init
Setup:
npx prisma db pull
to pull schema from database at urlnpx prisma generate
to generate Prisma client from schemaOpen http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying app/page.tsx
. The page auto-updates as you edit the file.
This project uses next/font
to automatically optimize and load Inter, a custom Google Font.