Skip to content

Latest commit

 

History

History
61 lines (46 loc) · 1.24 KB

README.md

File metadata and controls

61 lines (46 loc) · 1.24 KB
favicon

LOVE

A Next.js website for trading & economy information for Polytoria

Stack


Website Preview
Website Preview

Environment Setup

Copy the example environment file and configure your variables:

cp .env.example .env

Then, install the necessary dependencies with the package manager of your choosing:

pnpm install

You need to then push the SQL schema to your database:

pnpm run db:push

Finally, either build for production or start a dev server:

# Production
pnpm run build
pnpm run start

# Development
pnpm run dev