1
0
mirror of https://github.com/citizenfx/cfx-server-data.git synced 2025-02-09 06:33:29 +08:00
cfx-server-data
Go to file
d0p3t e2fe323d88 Set 'buildingInProgress' to false after successful config build to not lock other builds
- Log build in progress to console
- webpack, not weebpack, weebs!
- Add yarn.lock
2021-01-13 20:45:09 +01:00
resources Set 'buildingInProgress' to false after successful config build to not lock other builds 2021-01-13 20:45:09 +01:00
.gitignore gitignore: ignore /db/ too 2020-11-01 12:49:11 +01:00
README.md Fix symlink targets. 2020-11-26 17:00:22 +01:00

cfx-server-data

The data repository for Cfx.re servers

Usage

  1. Make sure to git clone. Don't "Download ZIP", as that'll make it much harder to update to newer versions.
  2. Put custom resources in resources/[local]/ if you don't want to be affected by any random messups.

Advanced usage

You can also consider using the repository as a submodule + symlink for your own Git repository:

Linux:

$ git submodule add https://github.com/citizenfx/cfx-server-data.git vendor/server-data
$ ln -s ../vendor/server-data/resources/ 'resources/[base]/'

Windows:

> git submodule add https://github.com/citizenfx/cfx-server-data.git vendor/server-data
> mklink /d resources\[base] ..\vendor\server-data\resources

Policy

You can make pull requests to propose changes that benefit everyone. Add new useful resources, change/improve existing ones - anything goes, as long as you make sure to:

  1. Not break existing users/APIs.
  2. Not change default behavior without a toggle.
  3. Use best practices (convars over config files, native commands wherever possible, etc.)

Modifying or rewriting existing resources in this repository for local use only is strongly discouraged.