Skip to content

Build & Deploy

Turn your project into a clean, deployable build without hand-copying files.

  1. Open Build & Deploy in the sidebar.
  2. Choose an output folder.
  3. Optionally enable Export database to include a .sql dump (needs a database connection).
  4. Click Build.

The build copies your whole resources/ folder, your server.cfg, and the optional database dump. You can also include the FXServer build itself, so the output folder runs on its own.

Five things are stripped at every level as it copies: .git, node_modules, .boltise, .DS_Store and .gitignore.

  1. Upload the output folder to your VPS.
  2. Install FXServer there if it is not already present.
  3. Start the server with your server.cfg.

Import the SQL dump on your production database with:

Terminal window
mysql -u username -p database_name < database_dump.sql
Docs privacy