jacmoe / yii2-app-basic-deployer
Yii 2 Basic Project Template with Deployer.php support
This package's canonical repository appears to be gone and the package has been frozen as a result. Email us for help if needed.
Installs: 134
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 1
Forks: 1
Open Issues: 0
Type:project
pkg:composer/jacmoe/yii2-app-basic-deployer
Requires
- php: >=5.4.0
 - yiisoft/yii2: >=2.0.5
 - yiisoft/yii2-bootstrap: *
 - yiisoft/yii2-swiftmailer: *
 
Requires (Dev)
README
Yii 2 Basic Project Template with Deployer.php support is a skeleton Yii 2 application for rapidly creating projects.
The template contains the basic features including user login/logout and a contact page. It includes all commonly used configurations that would allow you to focus on adding new features to your application.
HOW IS THIS DIFFERENT FROM STANDARD BASIC APP?
- This project can be deployed by Deployer
 config/db.phpandyiiis generated automatically- An 
.htaccessis added to thewebfolder and FollowSymlinks is turned on. - Project can be served directly from source on the development machine, but this requires manual setup - namely creating 
yiiandconfig/db.php. 
HOW DOES IT WORK?
See my blog post Deploying Yii with Deployer
RELATED
See also yii2-app-advanced-deployer
DIRECTORY STRUCTURE
  assets/             contains assets definition
  commands/           contains console commands (controllers)
  config/             contains application configurations
  controllers/        contains Web controller classes
  deployer/recipe     contains Deployer recipes
  deployer/templates  contains templates configured by Deployer
  deployer/stage      contains configuration file for Deployer
  mail/               contains view files for e-mails
  migrations/         contains migrations
  models/             contains model classes
  tests/              contains various tests for the application
  vendor/             contains dependent 3rd-party packages
  views/              contains view files for the Web application
  web/                contains the entry script and Web resources
REQUIREMENTS
The minimum requirement by this project template that your Web server supports PHP 5.4.0.
Deployer
mv deployer.phar /usr/local/bin/dep
chmod +x /usr/local/bin/dep
For more, see Deployer - Installation
INSTALLATION
Install via Composer
If you do not have Composer, you may install it by following the instructions at getcomposer.org.
You can then install this project template using the following command:
php composer.phar global require "fxp/composer-asset-plugin:~1.1.1"
php composer.phar create-project --prefer-dist --stability=dev jacmoe/yii2-app-basic-deployer basic
Deployment
servers.yml
First, create a file entitled servers.yml in the deployer/stage directory.
You can copy the contents of servers-sample.yml to get you started.
Create db on server
Prior to deployment, make sure that you have created a database on the server you want to deploy to.
deploy command
When you have created a server configuration file, all you need to do is run this command:
dep deploy production
or
dep deploy local
Note that the server configuration for the local stage needs to have a key called local because that will make Deployer create a local server that doesn't use ssh.
If the active stage does not have local set for the server, you need an ssh server on your local machine (sudo apt-get install openssh-server).
Configure without deploy
It is very common to serve the project in place when developing, and therefore this project template ships with a function to configure files, set writable directories and install vendors.
Simply run:
dep inplace local
This command assumes that you've set the deploy dir in the servers.yml configuration file to point to your current source directory (the directory you are in).
CONFIGURATION
The configuration is handled automatically from the values you wrote in servers.yml using the templates in deployer/templates.
NOTES:
- Refer to the README in the 
testsdirectory for information specific to basic application tests.