This repository has been archived by the owner on Mar 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Deploy Preinstall
ZeroC0D3 Team edited this page Jan 19, 2018
·
2 revisions
Preinstall script will be running before Web Server service running
#!/usr/bin/env sh
# ========== PREINSTALLATION SCRIPTS ========== #
# Do Not Remove This File ! #
# This is customize script before server up #
# ============================================= #
ENV='staging'
BUNDLE=`which bundle`
if [ "$ENV" = "production" ]
then
PWD='/home/deploy/zeroc0d3lab/current'
else
PWD='/home/deploy/zeroc0d3lab.dev/current'
fi
cd $PWD
$BUNDLE install --binstubs
#!/usr/bin/env sh
# ========== PREINSTALLATION SCRIPTS ========== #
# Do Not Remove This File ! #
# This is customize script before server up #
# ============================================= #
ENV='production'
BUNDLE=`which bundle`
if [ "$ENV" = "production" ]
then
PWD='/home/deploy/zeroc0d3lab/current'
else
PWD='/home/deploy/zeroc0d3lab.dev/current'
fi
cd $PWD
$BUNDLE install --binstubs
Research & Development (RnD) - ZeroC0D3 Team
- Email: [email protected]
- Repository: https://github.com/zeroc0d3lab
- Install-Packages
- Setup-Server
- Setup-Account
- Configuration-Bash
- Configuration-Zsh
- Install-Bash-Theme
- Install-Zsh-Theme
- Install-Docker
- Install-Memcached
- Install-MongoDB
- Install-MySQL
- Install-NodeJS
- Install-PostgreSQL
- Install-Redis
- Install-Ruby
- Install-SQLite3
- Configuration-App
- Configuration-GCM
- Configuration-Hosts
- Configuration-Fstab
- Configuration-Memcached
- Configuration-MongoDB
- Configuration-PostgreSQL
- Configuration-Puma
- Configuration-Swap
- Configuration-Unicorn
- Nginx-Puma
- Nginx-Unicorn
- Logrotate
- Deployment-Dashboard
- Deployment-Configuration
- Deployment-Process
- Deployment-Folder-Structure
- Deploy-Preinstall