mirror of
https://github.com/penpot/penpot.git
synced 2026-07-04 05:15:08 +00:00
34 lines
828 B
Bash
34 lines
828 B
Bash
#!/usr/bin/env bash
|
|
|
|
EMSDK_QUIET=1 . /opt/emsdk/emsdk_env.sh;
|
|
|
|
export JAVA_OPTS="-Djava.net.preferIPv4Stack=true"
|
|
export PATH="/home/penpot/.cargo/bin:/opt/jdk/bin:/opt/gh/bin:/opt/utils/bin:/opt/clojure/bin:/opt/node/bin:/opt/imagick/bin:/opt/cargo/bin:$PATH"
|
|
export CARGO_HOME="/home/penpot/.cargo"
|
|
|
|
export PENPOT_MCP_PLUGIN_SERVER_HOST=0.0.0.0
|
|
export PENPOT_MCP_SERVER_HOST=0.0.0.0
|
|
|
|
export LANG=C.UTF-8
|
|
export LC_ALL=C.UTF-8
|
|
|
|
alias l='ls --color -GFlh'
|
|
alias ll='ls --color -GFlh'
|
|
alias rm='rm -rf'
|
|
alias ls='ls --color -F'
|
|
alias lsd='ls -d *(/)'
|
|
alias lsf='ls -h *(.)'
|
|
|
|
# include .bashrc if it exists
|
|
if [ -f "$HOME/.bashrc.local" ]; then
|
|
. "$HOME/.bashrc.local"
|
|
fi
|
|
|
|
# pnpm
|
|
export PNPM_HOME="/home/penpot/.local/share/pnpm"
|
|
case ":$PATH:" in
|
|
*":$PNPM_HOME:"*) ;;
|
|
*) export PATH="$PNPM_HOME:$PATH" ;;
|
|
esac
|
|
# pnpm end
|