mirror of
https://github.com/penpot/penpot.git
synced 2025-05-11 05:56:37 +02:00
📎 Update default scripts
This commit is contained in:
parent
c5b1b67c50
commit
602b736163
5 changed files with 17 additions and 10 deletions
|
@ -13,11 +13,15 @@ export PENPOT_FLAGS="$PENPOT_FLAGS enable-backend-asserts enable-secure-session-
|
||||||
# export PENPOT_DATABASE_USERNAME="penpot_pre"
|
# export PENPOT_DATABASE_USERNAME="penpot_pre"
|
||||||
# export PENPOT_DATABASE_PASSWORD="penpot_pre"
|
# export PENPOT_DATABASE_PASSWORD="penpot_pre"
|
||||||
|
|
||||||
|
# export PENPOT_LOGGERS_LOKI_URI="http://172.17.0.1:3100/loki/api/v1/push"
|
||||||
|
# export PENPOT_AUDIT_LOG_ARCHIVE_URI="http://localhost:6070/api/audit"
|
||||||
|
|
||||||
# Initialize MINIO config
|
# Initialize MINIO config
|
||||||
# mc alias set penpot-s3/ http://minio:9000 minioadmin minioadmin
|
mc alias set penpot-s3/ http://minio:9000 minioadmin minioadmin
|
||||||
# mc admin user add penpot-s3 penpot-devenv penpot-devenv
|
mc admin user add penpot-s3 penpot-devenv penpot-devenv
|
||||||
# mc admin policy set penpot-s3 readwrite user=penpot-devenv
|
mc admin policy set penpot-s3 readwrite user=penpot-devenv
|
||||||
# mc mb penpot-s3/penpot -p
|
mc mb penpot-s3/penpot -p
|
||||||
|
|
||||||
export AWS_ACCESS_KEY_ID=penpot-devenv
|
export AWS_ACCESS_KEY_ID=penpot-devenv
|
||||||
export AWS_SECRET_ACCESS_KEY=penpot-devenv
|
export AWS_SECRET_ACCESS_KEY=penpot-devenv
|
||||||
export PENPOT_ASSETS_STORAGE_BACKEND=assets-fs
|
export PENPOT_ASSETS_STORAGE_BACKEND=assets-fs
|
||||||
|
|
|
@ -41,8 +41,7 @@
|
||||||
data))
|
data))
|
||||||
|
|
||||||
(def defaults
|
(def defaults
|
||||||
{:host "devenv"
|
{
|
||||||
:tenant "dev"
|
|
||||||
:database-uri "postgresql://postgres/penpot"
|
:database-uri "postgresql://postgres/penpot"
|
||||||
:database-username "penpot"
|
:database-username "penpot"
|
||||||
:database-password "penpot"
|
:database-password "penpot"
|
||||||
|
@ -54,8 +53,10 @@
|
||||||
:file-change-snapshot-timeout "3h"
|
:file-change-snapshot-timeout "3h"
|
||||||
|
|
||||||
:public-uri "http://localhost:3449"
|
:public-uri "http://localhost:3449"
|
||||||
:redis-uri "redis://redis/0"
|
:host "localhost"
|
||||||
|
:tenant "main"
|
||||||
|
|
||||||
|
:redis-uri "redis://redis/0"
|
||||||
:srepl-host "127.0.0.1"
|
:srepl-host "127.0.0.1"
|
||||||
:srepl-port 6062
|
:srepl-port 6062
|
||||||
|
|
||||||
|
|
|
@ -99,7 +99,10 @@
|
||||||
(let [body (yrs/body response)]
|
(let [body (yrs/body response)]
|
||||||
(if (coll? body)
|
(if (coll? body)
|
||||||
(let [qs (yrq/query request)
|
(let [qs (yrq/query request)
|
||||||
opts {:type (if (str/includes? qs "verbose") :json-verbose :json)}]
|
opts (if (or (contains? cf/flags :transit-readable-response)
|
||||||
|
(str/includes? qs "transit_verbose"))
|
||||||
|
{:type :json-verbose}
|
||||||
|
{:type :json})]
|
||||||
(-> response
|
(-> response
|
||||||
(update :headers assoc "content-type" "application/transit+json")
|
(update :headers assoc "content-type" "application/transit+json")
|
||||||
(assoc :body (transit-streamable-body body opts))))
|
(assoc :body (transit-streamable-body body opts))))
|
||||||
|
|
|
@ -166,11 +166,9 @@
|
||||||
(a/go
|
(a/go
|
||||||
;; Only allow receive pointer updates when active subscription
|
;; Only allow receive pointer updates when active subscription
|
||||||
(when-let [{:keys [topic]} (get-in @wsp [::subscriptions subs-id])]
|
(when-let [{:keys [topic]} (get-in @wsp [::subscriptions subs-id])]
|
||||||
(l/trace :fn "handle-message" :event :pointer-update :message message)
|
|
||||||
(let [msgbus-fn (:msgbus @wsp)
|
(let [msgbus-fn (:msgbus @wsp)
|
||||||
profile-id (::profile-id @wsp)
|
profile-id (::profile-id @wsp)
|
||||||
session-id (::session-id @wsp)
|
session-id (::session-id @wsp)
|
||||||
|
|
||||||
message (-> message
|
message (-> message
|
||||||
(dissoc :subs-id)
|
(dissoc :subs-id)
|
||||||
(assoc :profile-id profile-id)
|
(assoc :profile-id profile-id)
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
# Should be set to the public domain where penpot is going to be served.
|
# Should be set to the public domain where penpot is going to be served.
|
||||||
PENPOT_PUBLIC_URI=http://localhost:9001
|
PENPOT_PUBLIC_URI=http://localhost:9001
|
||||||
|
PENPOT_TENANT=pro
|
||||||
|
|
||||||
# Temporal workaround because of bad builtin default
|
# Temporal workaround because of bad builtin default
|
||||||
PENPOT_HTTP_SERVER_HOST=0.0.0.0
|
PENPOT_HTTP_SERVER_HOST=0.0.0.0
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue