All Projects → ngmy → Webloyer

ngmy / Webloyer

Licence: mit
Webloyer is a web UI for managing Deployer deployments

Projects that are alternatives of or similar to Webloyer

Nova Custom Email Sender
A Laravel Nova tool that sends ad-hoc email messages from the dashboard.
Stars: ✭ 62 (-68.84%)
Mutual labels:  laravel, tool
Laravel Deployer
🚀 Zero-downtime deployment out-of-the-box
Stars: ✭ 1,536 (+671.86%)
Mutual labels:  laravel, deployment
Laravel Cadillac
🍺 A database tool for laravel.
Stars: ✭ 63 (-68.34%)
Mutual labels:  laravel, tool
Laravel Web Tinker
Tinker in your browser
Stars: ✭ 664 (+233.67%)
Mutual labels:  laravel, tool
Android Rocket Launcher
🚀 Launch android modules from the terminal
Stars: ✭ 161 (-19.1%)
Mutual labels:  deployment, tool
Deployer
Deployer is a free and open source deployment tool.
Stars: ✭ 854 (+329.15%)
Mutual labels:  laravel, deployment
Surf
Easy and powerful PHP deployment tool
Stars: ✭ 79 (-60.3%)
Mutual labels:  deployment, tool
Laravel Zero
A PHP framework for console artisans
Stars: ✭ 2,821 (+1317.59%)
Mutual labels:  laravel, tool
Deeployer
Deploy your Laravel applications via Github or Bitbucket Hooks
Stars: ✭ 151 (-24.12%)
Mutual labels:  laravel, deployment
Larapush
artisan push - Deploy your codebase into your web server with one Laravel artisan command and no SSH needed!
Stars: ✭ 150 (-24.62%)
Mutual labels:  laravel, deployment
Cipi
An Open Source Control Panel for your Cloud! Deploy and manage LEMP apps in one click!
Stars: ✭ 376 (+88.94%)
Mutual labels:  laravel, deployment
Deploy Rs
A simple multi-profile Nix-flake deploy tool.
Stars: ✭ 164 (-17.59%)
Mutual labels:  deployment, tool
Harp
A Go application deployment tool.
Stars: ✭ 263 (+32.16%)
Mutual labels:  deployment, tool
Laravel Caprover Template
Template to deploy a Laravel app in docker for CapRover
Stars: ✭ 56 (-71.86%)
Mutual labels:  laravel, deployment
Nova Backup Tool
A Laravel Nova tool to backup your app
Stars: ✭ 260 (+30.65%)
Mutual labels:  laravel, tool
Deployer
A deployment tool written in PHP with support for popular frameworks out of the box
Stars: ✭ 8,928 (+4386.43%)
Mutual labels:  deployment, tool
Nova Tail Tool
A Laravel Nova tool to display the application log
Stars: ✭ 110 (-44.72%)
Mutual labels:  laravel, tool
Envoy Deployscript
Laravel Envoy Deployment Script
Stars: ✭ 160 (-19.6%)
Mutual labels:  laravel, deployment
Laravel Nova Nested Form
This package allows you to include your nested relationships' forms into a parent form.
Stars: ✭ 169 (-15.08%)
Mutual labels:  laravel, tool
Laravel Tournaments
Laravel Package that allows you to generate customizable tournaments trees.
Stars: ✭ 196 (-1.51%)
Mutual labels:  laravel

Webloyer

Latest Stable Version Total Downloads Latest Unstable Version License
Build Status Coverage Status

Webloyer is a Web UI for managing Deployer deployments.

Features

Webloyer has the following features:

  • Project management
    • Managing deployment settings on a project-by-project basis
  • Deployment management on a project-by-project basis
    • 1-click deploying and rolling back
    • Keeping a log of every deployments
    • E-mail notifications can be sent when a deployment finishes
  • Recipe management
    • Creating, editing, deleting and listing recipe files
  • Server management
    • Creating, editing, deleting and listing server list files
  • User management
    • Authentication with e-mail address and password
    • Role-based access control to features
  • Web APIs
  • Webhooks
    • GitHub

Screenshots

See screenshots.

Requirements

Webloyer has the following requirements:

  • PHP >= 5.6.0
  • OpenSSL PHP Extension
  • PDO PHP Extension
  • Mbstring PHP Extension
  • Tokenizer PHP Extension

Installation

Option 1: Download Source Code

  1. Download the application source code by using the Composer create-project command:
    composer create-project ngmy/webloyer
    
  2. Give write permission to the storage directory and the bootstrap/cache directory for your web server user (e.g. www-data) by running the following command:
    chown -R www-data:www-data storage
    chown -R www-data:www-data bootstrap/cache
    
  3. Run the installer by using the Artisan webloyer:install command:
    php artisan webloyer:install
    
    Note: You must be running this command as your web server user.
  4. Start the queue listener as a background process by using the Artisan queue:listen command:
    nohup php artisan queue:listen --timeout=0 &
    
    Note: You must be running this command as your web server user.
  5. Add the following Cron entry to your server:
    * * * * * php /path/to/webloyer/artisan schedule:run >> /dev/null 2>&1
    
    Note: You must be running this Cron entry as your web server user.

Option 2: Using Docker

You can also install using Webloyer Docker.

Basic Usage

Step 1: Login to Webloyer

  1. Go to the Login page by click the "Login" link.
  2. Enter the e-mail address and password.
  3. Click the "Login" button to login to Webloyer.

Step 2: Create Your Project

  1. Go to the Create Project page by click the "Create" button in the Projects page.
  2. Enter your project information. Note: For now, Webloyer only supports the deploy task and the rollback task. Therefore, you must define these tasks in your Deployer recipe file. Note: If you want to use the e-mail notification, you need to enter your e-mail settings from the E-Mail Settings page.
  3. Click the "Store" button to finish project creation process.

Step 3: Managing Deployments

  1. Go to the Deployments page by click the "Deployments" button.
  2. Run the deploy task by click the "Deploy" button. Or run the rollback task by click the "Rollback" button.
  3. After the task of execution has been completed, it is possible to go to the Deployment Detail page by click the "Show" button, you can see the details of the task execution results.

Advanced Usage

Foundation Library

Webloyer uses Laravel as a foundation PHP framework.

License

Webloyer is open-sourced software licensed under the MIT license.

Donation

Do you want to buy me a coffee?

Flattr this

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].