mirror of
https://github.com/penpot/penpot.git
synced 2025-05-22 22:56:10 +02:00
✨ Change default location of assets on devenv.
This commit is contained in:
parent
32afe57e18
commit
08a682efc2
7 changed files with 3 additions and 75 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -15,6 +15,7 @@ node_modules
|
||||||
/backend/target/
|
/backend/target/
|
||||||
/backend/resources/public/media
|
/backend/resources/public/media
|
||||||
/backend/resources/public/assets
|
/backend/resources/public/assets
|
||||||
|
/backend/assets/
|
||||||
/backend/dist/
|
/backend/dist/
|
||||||
/backend/logs/
|
/backend/logs/
|
||||||
/backend/-
|
/backend/-
|
||||||
|
|
|
@ -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)$"}]}
|
|
||||||
|
|
||||||
|
|
|
@ -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}}
|
|
|
@ -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}}
|
|
|
@ -42,7 +42,7 @@
|
||||||
|
|
||||||
:storage-backend :fs
|
:storage-backend :fs
|
||||||
|
|
||||||
:storage-fs-directory "resources/public/assets"
|
:storage-fs-directory "assets"
|
||||||
:storage-s3-region :eu-central-1
|
:storage-s3-region :eu-central-1
|
||||||
:storage-s3-bucket "penpot-devenv-assets-pre"
|
:storage-s3-bucket "penpot-devenv-assets-pre"
|
||||||
|
|
||||||
|
|
|
@ -91,7 +91,7 @@ http {
|
||||||
|
|
||||||
location /internal/assets {
|
location /internal/assets {
|
||||||
internal;
|
internal;
|
||||||
alias /home/penpot/penpot/backend/resources/public/assets;
|
alias /home/penpot/penpot/backend/assets;
|
||||||
add_header x-internal-redirect "$upstream_http_x_accel_redirect";
|
add_header x-internal-redirect "$upstream_http_x_accel_redirect";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue