πŸ”§Installation

System Requirements

Requirement
Minimum

FiveM Server

Latest artifacts

Database

MySQL 5.7+ / MariaDB 10.3+

oxmysql

v2.0+

Step-by-Step Installation

1. Download NOVA Core

# Clone from GitHub
git clone https://github.com/Buddhapt/nova-framework.git nova_core

Or download the ZIP from Releasesarrow-up-right.

2. Database Setup

Import the SQL schema included with nova_core:

-- File: nova_core/sql/nova.sql
-- Creates all required framework tables

You can import via command line:

mysql -u your_user -p your_database < nova_core/sql/nova.sql

Or via phpMyAdmin/HeidiSQL by importing the file.

3. Resource Structure

Place the resources in your server folder:

4. Server Configuration

Add to your server.cfg:

::: warning IMPORTANT nova_core must ALWAYS be ensured before any other NOVA script. The core initializes the framework and all other scripts depend on it. :::

5. Verify Installation

Start your server and check the console for:

Installing nova_bridge (Optional)

The bridge allows you to use existing ESX/QBCore/vRPex/Creative scripts:

Edit nova_bridge/config.lua to set your compatibility mode:

Troubleshooting

"oxmysql not found"

Ensure oxmysql is started before nova_core in your server.cfg.

"Table doesn't exist"

Make sure you imported nova_core/sql/nova.sql into your database.

Scripts not loading

Check that nova_core is ensured before all other nova scripts.

Last updated