IAP validation 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/iapValidationSchema.prisma"
- Copy
.env.example
- Rename copied file to
.env
- Open
.env
and changes configs
IAP validation 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 DATABASE_URL
, you can see info about connection string from this link.
DATABASE_URL
is connection string to connect to IAP validation database.
After you set DATABASE_URL
properly, then you have to push tables by uses command npx prisma db push --schema "./prisma/iapValidationSchema.prisma"
npm run build
npm run start
Try change schema.prisma -> datasource db to use SQLite, learn about it here