/script-builder-backend

The backend for the Script Builder Project

Primary LanguageJavaScriptGNU General Public License v3.0GPL-3.0

Script Builder Backend

This is the backend repository for the Script Builder project located here:

https://github.com/mrparkerlol/script-builder

This handles the local scripts, as well as sandboxing module scripts (coming soon).

Requires the following prerequisites:

The project has the following dependencies:

An example config.js:

module.exports = {
	robloxSecret: "_|WARNING:-DO-NOT-SHARE-THIS...", // .ROBLOSECURITY cookie for alternate account
	faunaSecret: "abcdefghijklmnopqrstuvwxyz1234567890", // Secret for FaunaDB
}

An example wrangler.toml:

compatibility_date = "2022-09-14"
name = "script-builder-backend"
account_id = "abc123"
workers_dev = true
route = { pattern = "*", zone_id = "abc123" }
main = "./index"
node_compat = true