$ docker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const TATTOO_GROUPS = { | |
mpairraces_overlays: [ | |
{ | |
name: 'Turbulence', | |
male: 'MP_Airraces_Tattoo_000_M', | |
female: 'MP_Airraces_Tattoo_000_F', | |
zone: 'ZONE_TORSO' | |
}, | |
{ | |
name: 'Pilot Skull', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const pedHeadOverlays = [ | |
{ | |
label: 'Facial Hair', | |
key: 'facialhair', | |
value: 0, | |
min: 0, | |
max: 28, | |
increment: 1, | |
id: 1, | |
colorType: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const StructureGroup: [ | |
{ | |
label: 'Nose Width', | |
key: 'nosewidth', | |
value: 0, | |
min: -1, | |
max: 1, | |
increment: 0.1, | |
id: 0 | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const maleHairNames = [ | |
'Close Shave', | |
'Buzzcut', | |
'Faux Hawk', | |
'Shaved Sides Slicked Back', | |
'Raised Front Same Length', | |
'Col De Sacs and Long Back', | |
'Close Shave and Loose Mohawk', | |
'Ponytail', | |
'Corn Rows', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const HairOverlaysMale = { | |
0: { collection: 'mpbeach_overlays', overlay: 'FM_Hair_Fuzz' }, | |
1: { collection: 'multiplayer_overlays', overlay: 'NG_M_Hair_001' }, | |
2: { collection: 'multiplayer_overlays', overlay: 'NG_M_Hair_002' }, | |
3: { collection: 'multiplayer_overlays', overlay: 'NG_M_Hair_003' }, | |
4: { collection: 'multiplayer_overlays', overlay: 'NG_M_Hair_004' }, | |
5: { collection: 'multiplayer_overlays', overlay: 'NG_M_Hair_005' }, | |
6: { collection: 'multiplayer_overlays', overlay: 'NG_M_Hair_006' }, | |
7: { collection: 'multiplayer_overlays', overlay: 'NG_M_Hair_007' }, | |
8: { collection: 'multiplayer_overlays', overlay: 'NG_M_Hair_008' }, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as alt from 'alt'; | |
import mongodb from 'mongodb'; | |
import config from './configuration.json'; | |
const MongoClient = mongodb.MongoClient; | |
const ObjectID = mongodb.ObjectID; | |
let instance; | |
export default class ConnectionInfo { | |
/** |
How to configure multiple deploy keys for different private github repositories on the same computer without using ssh-agent
Let's say alice
is a github.com user, with 2 or more private repositories repoN
.
For this example we'll work with just two repositories named repo1
and repo2
https://github.com/alice/repo1
https://github.com/alice/repo2
You need to be to pull from these repositories without entering a passwords probably on a server, or on multiple servers.