Auction house service for MMORPG KIT
- You have to install Node.js (I hope I won't have to tell you how)
- Clone this repo
npm i --force
npx prisma generate --schema "./prisma/auctionSchema.prisma"
npx prisma generate --schema "./prisma/mailSchema.prisma"
- Copy
.env.example
- Rename copied file to
.env
- Open
.env
and changes configs - Open
auction-conf.json
and changes configs
Auction database's provider is MySQL, so you have to prepare MySQL server, also have to create empty database which will be filled with tables later, then set connection string config AUCTION_DATABASE_URL
, you can see info about connection string from this link.
AUCTION_DATABASE_URL
is connection string to connect to auction database.MAIL_DATABASE_URL
is connection string to connect to MMORPG KIT database.
After you set AUCTION_DATABASE_URL
properly, then you have to push tables by uses command npx prisma db push --schema "./prisma/auctionSchema.prisma"
(You won't have to push mail schema because it is part of MMORPG KIT, just have to set MAIL_DATABASE_URL
)
npm run build
npm run start
Try change schema.prisma -> datasource db to use SQLite, learn about it here