File size: 2,288 Bytes
8a79f2e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
#####################################################################
# Make a copy of this file called config_user.yaml and place
# it at the root level of the repository
#
# This file holds local settings specific to your computing
# environment. It should not be committed to the repository.
#####################################################################
#####################################################################
# External dependencies
#
# This section defines resources used by the code that are external
# to the repository. Code should never reference any files external
# to the repository except via these paths.
#
# Each external resource is defined by a key with a value equal
# to the local path to the resource. These
# keys should be short descriptive names that will then be used
# to refer to these resources in code. E.g., "raw_data",
# "my_other_repo", etc. Defaults can optionally be placed in
# brackets after the colon
#
# Replace the paths below with correct local paths on your machine
#
#####################################################################
external:
dropbox: /project #Point to PhoneAddiction Dropbox Root
#####################################################################
# Local settings
#
# This section defines parameters specific to each user's local
# environment.
#
# Examples include names of executables, usernames, etc. These
# variables should NOT be used to store passwords.
#
# Each parameter is defined by a key with default value. These
# keys should be short descriptive names that will then be used
# to refer to the parameters in code.
#
#####################################################################
local:
# Executable names
executables:
python: python
r: Rscript
stata: stata-mp
matlab: matlab
lyx: lyx
latex: latex
# Data Run
#if true, data/run will start by reading in the latest raw master data file, instead of processing raw phone dashboard data
skip_building: True
# if true, will process new data in parallel. only relevant if skip_building == False
parallel: False
cores: 4
#if true, will use all data in DataTest and ConfidentialTest
test: False
#if true, stdout will write to data/log/mb_log.log instead of to terminal
log: False
|