-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.js.example
More file actions
31 lines (23 loc) · 1.08 KB
/
config.js.example
File metadata and controls
31 lines (23 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
24
25
26
27
28
29
30
31
// This file shares project-specific constants between node.js and the web app
// https://gist.github.com/drmikecrowe/4bf0938ea73bf704790f
/* jshint ignore:start */
(function(window) {
var config = {
// FULL PATH TO SVG FILES
// *** RESTART SERVER (CTL+C quits previous process, Up Arrow to get previous command, Return to run) IF YOU CHANGE THESE !! ***
// Owen Macbook Pro
// FULL_SVG_PATH: '/Users/owenmundy/Sites/_teaching/_code_web/svg-randomizer/tests/sample-svg-input',
// Joelle MacPro
// FULL_SVG_PATH: '/Users/joelledietrick/Dropbox (Davidson College)/Sneakaway Studio/Chasing the Sun/Artwork/UTC-ORIGINALS'
// Joelle Macbook Pro
FULL_SVG_PATH: '/Volumes/GoogleDrive-102724189768272292084/My\ Drive/Art\ \(Dietrick\ Studio\)/_Artwork\ Process/Chasing\ the\ Sun/Artwork/UTC-ORIGINALS-SVG',
// DIRECTORY (CHANGE FOR DEV)
SVG_DIR: "UTC-ORIGINALS",
};
if (typeof module === 'object' && module && typeof module.exports === 'object') {
module.exports = config;
} else {
window.CONFIG = config;
}
})(this);
/* jshint ignore:end */