-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatabase.lua
More file actions
23 lines (21 loc) · 1.08 KB
/
database.lua
File metadata and controls
23 lines (21 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--[[
fs_freemode - game mode for FiveM.
Copyright (C) 2018 FiveM-Scripts
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with fs_freemode in the file "LICENSE". If not, see <http://www.gnu.org/licenses/>.
]]
-- Don't change this, read the documentation instead https://freemode.readme.io/docs/getting-started.
database = {
driver = GetConvar('database_driver', 'couchdb'),
host = GetConvar('es_couchdb_url', '127.0.0.1'),
port = GetConvar('es_couchdb_port', '5984'),
username = GetConvar('es_couchdb_password', 'admin:changeme')
}