Download the PHP package naffiq/rocket-tools without Composer
On this page you can find all versions of the php package naffiq/rocket-tools. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download naffiq/rocket-tools
More information about naffiq/rocket-tools
Files in naffiq/rocket-tools
Package rocket-tools
Short Description RocketFirm tools to jumpstart with development
License MIT
Informations about the package rocket-tools
RocketTools
This little php script helps you generate and manage nginx configuration for your project.
Installation
Via composer
Install this project globally by running
Make sure, that you have your composer's bin
directory linked to your PATH
environment
variable.
Download PHAR executable
You can get the latest version this utility on releases page.
Just grab rocket-tools.phar
and put it to your /usr/local/bin
directory (if you're on macOS/Linux) or just any
folder listed in your PATH
on Windows.
Usage
Check the version by running
Generate nginx configurations
You can create nginx config in sites-available for your Yii2 project (basic for now) by running
This command takes following arguments:
server-name
Domain (server_name) for newly created appconfig-name
File name for your config file. If not set firstserver-name
is useddocument-root
Document root for your project. If not set, taken from run directory. default: "CURRENT/RUNNING/DIRECTORY"sites-available
Path of sites-available folder default: "/etc/nginx/sites-available"port
Listen port. default: 80fast-cgi-pass
Fast CGI pass. default: "unix:/var/run/php7.1-fpm.sock"
You can override defaults by configuring rocket-tools
with [config:update](#Configuring RocketTools) command.
Link/unlink nginx sites available
Run this command to link config from sites-available
to sites-enabled
folder:
Arguments:
site-name
Configuration file namesites-available
Sites available directory (without .conf) default: "/etc/nginx/sites-available"sites-enabled
Sites enabled directory default: "/etc/nginx/sites-enabled"
To unlink config run:
Arguments:
site-name
Configuration file namesites-enabled
Sites enabled directory default: "/etc/nginx/sites-enabled"
You can override defaults by configuring rocket-tools
with [config:update](#Configuring RocketTools) command.
Configuring RocketTools
To override default configurations run:
Arguments:
config-name
Configuration keyconfig-value
Configuration value
So in order to override nginx:generate
configurations simply take it's argument
(for example sites-available
), add nginx-
prefix to it and use it as configuration key.
The only exception is fast-cgi-pass
, which is related to php-fpm
and hand
Example:
There is also a command for viewing your current configuration:
Arguments:
config-name
Configuration key. If not set, displays all config values.
Configuration files
All of the configuration files are stored in $HOME/.rocket-tools/
directory.
If you want to change it, set ROCKET_TOOLS_HOME
environment variable to desired path.
Updating RocketTools
If you are using composer
run:
Just like composer.phar
, rocket-tools.phar
file contains self-update
command, if
you manually downloaded it from releases page.
Under the hood:
TODO:
- [ ] Add default templates for nginx configs (Yii2 advanced, Laravel, Symfony)
- [ ] Custom templates for nginx config
- [ ] Apache2 config generator
- [ ] Automated MySQL DB/User creation
- [ ] Automated
.env
file generator - [ ] hosts file editor
- [ ] All of the steps in one command master
License: MIT
Crafted with ♥