2022-10-01 02:27:23 +00:00
|
|
|
#!/bin/zsh
|
2023-04-26 21:51:32 +00:00
|
|
|
#####################################################################
|
|
|
|
### scwrypts runtime configuration ##################################
|
|
|
|
#####################################################################
|
2022-10-01 02:27:23 +00:00
|
|
|
|
2023-06-24 13:50:14 +00:00
|
|
|
# whether or not to deploy to production (0 = dev (default), 1 = prod)
|
|
|
|
export IN_PRODUCTION=
|
|
|
|
|
|
|
|
#####################################################################
|
|
|
|
|
2022-10-01 02:27:23 +00:00
|
|
|
# standard AWS environment variables used by awscli and other tools
|
2023-04-26 21:51:32 +00:00
|
|
|
export AWS_ACCOUNT=088935110352 # from local
|
|
|
|
export AWS_PROFILE=yage # from local
|
|
|
|
export AWS_REGION=us-east-2 # from local
|
2022-10-01 02:27:23 +00:00
|
|
|
|
|
|
|
# fully-qualified path to mount the EFS drive
|
2023-04-26 21:51:32 +00:00
|
|
|
export AWS__EFS__LOCAL_MOUNT_POINT=/mnt/efs/yage # from local
|
2022-10-01 02:27:23 +00:00
|
|
|
|
2023-04-26 21:51:32 +00:00
|
|
|
# details for a directus instance
|
|
|
|
export DIRECTUS__API_TOKEN=
|
|
|
|
export DIRECTUS__BASE_URL=https://heretic.directus.app # from local
|
|
|
|
|
|
|
|
# details for discord bot
|
|
|
|
export DISCORD__BOT_TOKEN=
|
2023-06-24 13:50:14 +00:00
|
|
|
export DISCORD__CONTENT_FOOTER=
|
|
|
|
export DISCORD__CONTENT_HEADER='<@380809228450922507> ' # from local
|
|
|
|
export DISCORD__DEFAULT_AVATAR_URL=
|
|
|
|
export DISCORD__DEFAULT_CHANNEL_ID=
|
|
|
|
export DISCORD__DEFAULT_USERNAME=
|
|
|
|
export DISCORD__DEFAULT_WEBHOOK=
|
2023-04-26 21:51:32 +00:00
|
|
|
|
2022-10-01 02:27:23 +00:00
|
|
|
# custom i3 configuration settings
|
|
|
|
export I3__BORDER_PIXEL_SIZE=
|
|
|
|
export I3__DMENU_FONT_SIZE=
|
|
|
|
export I3__GLOBAL_FONT_SIZE=
|
2023-04-26 21:51:32 +00:00
|
|
|
export I3__MODEL_CONFIG=$DOTWRYN/config/i3.conf # from local
|
2022-10-01 02:27:23 +00:00
|
|
|
|
2023-02-14 05:03:30 +00:00
|
|
|
# linear.app project management configuration
|
|
|
|
export LINEAR__API_TOKEN=
|
|
|
|
|
2023-06-24 13:50:14 +00:00
|
|
|
# s3 bucket name and filesystem targets for media backups
|
|
|
|
export MEDIA_SYNC__S3_BUCKET=yage # from local
|
|
|
|
export MEDIA_SYNC__TARGETS=(
|
|
|
|
.local/share/dolphin-emu
|
|
|
|
Games/roms/gameboy-advance
|
|
|
|
Games/roms/gameboy-color
|
|
|
|
Media
|
|
|
|
Pictures
|
|
|
|
)
|
|
|
|
|
2022-10-01 02:27:23 +00:00
|
|
|
# redis connection credentials
|
|
|
|
export REDIS_AUTH=
|
|
|
|
export REDIS_HOST=
|
|
|
|
export REDIS_PORT=
|
2023-04-26 21:51:32 +00:00
|
|
|
|
|
|
|
# twilio account / credentials
|
|
|
|
export TWILIO__ACCOUNT_SID=ACac926b109b3cd8a78685a2a0994d0271 # from local
|
|
|
|
export TWILIO__API_KEY=
|
|
|
|
export TWILIO__API_SECRET=
|
|
|
|
export TWILIO__DEFAULT_PHONE_FROM=
|
|
|
|
export TWILIO__DEFAULT_PHONE_TO=
|
|
|
|
|
|
|
|
#####################################################################
|