From the web folder:
cd web
npm install
npm run buildYou can also use pnpm or bun instead of npm.
Import the SQL schema (optional; the resource auto-creates the table if missing):
mysql -u root -p your_database < runme.sqlWarning
If you skip manual import, the resource creates the table on first run. Confirm your database connection works and oxmysql has appropriate permissions.
Add to server.cfg:
ensure oxmysql
ensure pxBlipCreatorCaution
oxmysql must load before pxBlipCreator, otherwise the resource will fail to start.
Add ACE permissions as needed. Master permission grants all actions:
add_ace group.admin "command.blipcreator" allowOr use granular permissions:
add_ace group.admin "pxblip.access" allow
add_ace group.admin "pxblip.create" allow
add_ace group.admin "pxblip.edit" allow
add_ace group.admin "pxblip.delete" allow
add_ace group.admin "pxblip.export" allow
add_ace group.admin "pxblip.import" allow