diff --git a/.gitignore b/.gitignore index 4e398b0..aa83554 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -skins/*/*.png +images/*/*.png *.log node_modules/ .DS_Store diff --git a/skins/faces/.gitkeep b/images/faces/.gitkeep similarity index 100% rename from skins/faces/.gitkeep rename to images/faces/.gitkeep diff --git a/skins/helms/.gitkeep b/images/helms/.gitkeep similarity index 100% rename from skins/helms/.gitkeep rename to images/helms/.gitkeep diff --git a/skins/renders/.gitkeep b/images/renders/.gitkeep similarity index 100% rename from skins/renders/.gitkeep rename to images/renders/.gitkeep diff --git a/skins/skins/.gitkeep b/images/skins/.gitkeep similarity index 100% rename from skins/skins/.gitkeep rename to images/skins/.gitkeep diff --git a/modules/config.example.js b/modules/config.example.js index cb7b709..fa23a8f 100644 --- a/modules/config.example.js +++ b/modules/config.example.js @@ -9,10 +9,10 @@ var config = { cleaning_redis_limit: 24576, // max allowed used KB on redis to trigger redis flush cleaning_amount: 50000, // amount of avatar (and their helm) files to clean http_timeout: 1000, // ms until connection to mojang is dropped - faces_dir: "skins/faces/", // directory where faces are kept. should have trailing "/" - helms_dir: "skins/helms/", // directory where helms are kept. should have trailing "/" - skins_dir: "skins/skins/", // directory where skins are kept. should have trailing "/" - renders_dir: "skins/renders/", // Directory where rendered skins are kept. should have trailing "/" + faces_dir: "images/faces/", // directory where faces are kept. should have trailing "/" + helms_dir: "images/helms/", // directory where helms are kept. should have trailing "/" + skins_dir: "images/skins/", // directory where skins are kept. should have trailing "/" + renders_dir: "images/renders/",// Directory where rendered skins are kept. should have trailing "/" debug_enabled: false, // enables logging.debug min_scale: 1, // for renders max_scale: 10, // for renders; too big values might lead to slow response time or DoS