From cf2998eeeca51e75c28b427f6c74db6455887a25 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Tue, 30 Mar 2021 14:51:50 +0200 Subject: [PATCH] :fire: Remove unused files. --- backend/resources/basedir | 0 backend/resources/builtin.edn | 11 ------- backend/resources/config/default.edn | 44 ---------------------------- backend/resources/config/test.edn | 18 ------------ 4 files changed, 73 deletions(-) delete mode 100644 backend/resources/basedir delete mode 100644 backend/resources/builtin.edn delete mode 100644 backend/resources/config/default.edn delete mode 100644 backend/resources/config/test.edn diff --git a/backend/resources/basedir b/backend/resources/basedir deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/backend/resources/builtin.edn b/backend/resources/builtin.edn deleted file mode 100644 index 7e3216732e..0000000000 --- a/backend/resources/builtin.edn +++ /dev/null @@ -1,11 +0,0 @@ -{:icons - [{:name "Material Design (Action)" - :path "./material/action/svg/production" - :regex #"^.*_48px\.svg$"}] - - :images - [{:name "Generic Collection 1" - :path "./my-images/collection1/" - :regex #"^.*\.(png|jpg|webp)$"}]} - - diff --git a/backend/resources/config/default.edn b/backend/resources/config/default.edn deleted file mode 100644 index 452d7503b2..0000000000 --- a/backend/resources/config/default.edn +++ /dev/null @@ -1,44 +0,0 @@ -{;; A secret key used for create tokens - ;; WARNING: this is a default secret key and - ;; it should be overwritten in production env. - :secret "5qjiAn-QUpawUNqGP10UZKklSqbLKcdGY3sJpq0UUACpVXGg2HOFJCBejDWVHskhRyp7iHb4rjOLXX2ZjF-5cw" - - :registration - { - :enabled true} - - :smtp - {:host "localhost" ;; Hostname of the desired SMTP server. - :port 25 ;; Port of SMTP server. - :user nil ;; Username to authenticate with (if authenticating). - :pass nil ;; Password to authenticate with (if authenticating). - :ssl false ;; Enables SSL encryption if value is truthy. - :tls false ;; Enables TLS encryption if value is truthy. - :enabled false ;; Enables SMTP if value is truthy. - :noop true} - - :auth-options {:alg :a256kw :enc :a128cbc-hs256} - - :email {:reply-to "no-reply@uxbox.io" - :from "no-reply@uxbox.io" - :support "support@uxbox.io"} - - :http {:port 6060 - :max-body-size 52428800 - :debug true} - - :media - {:directory "resources/public/media" - :uri "http://localhost:6060/media/"} - - :static - {:directory "resources/public/static" - :uri "http://localhost:6060/static/"} - - :database - {:adapter "postgresql" - :username nil - :password nil - :database-name "uxbox" - :server-name "localhost" - :port-number 5432}} diff --git a/backend/resources/config/test.edn b/backend/resources/config/test.edn deleted file mode 100644 index 31bc832421..0000000000 --- a/backend/resources/config/test.edn +++ /dev/null @@ -1,18 +0,0 @@ -{:migrations - {:verbose false} - - :media - {:directory "/tmp/uxbox/media" - :uri "http://localhost:6060/media/"} - - :static - {:directory "/tmp/uxbox/static" - :uri "http://localhost:6060/static/"} - - :database - {:adapter "postgresql" - :username nil - :password nil - :database-name "test" - :server-name "localhost" - :port-number 5432}}