Getting Started
Let's get started!
So you've finally purchased BlockBase, you're excited to get it up and running for your server, but how??
Running Locally
You must run this locally first to edit it before you can publish it to your web host (we provide free web hosts through discord btw).
You'll need to install NodeJS in your system to start, download it from here.
Commands
After you've installed NodeJS, extract blockbase.zip, go inside the extracted folder, open a new command prompt and run these commands:
npm install
- This will install the necessary dependencies to run and compile the website.npm run
- This will run the website locally for you, when you edit the files, this locally hosted website will automatically update as you edit blockbase. We recommend using VsCode to edit the files.npm build
- Open a new command prompt in the same folder, then run this command. This'll generate a new folder calledbuild
, everything INSIDE of thatbuild
folder is what you need to upload to your webhost'spublic_html
folder.
Last updated