All Projects → fireworkweb → fwd

fireworkweb / fwd

Licence: MIT License
FWD - easy environments for web applications

Programming Languages

PHP
23972 projects - #3 most used programming language
Dockerfile
14818 projects

Projects that are alternatives of or similar to fwd

Pug Sass Boilerplate Starter Kit
A Front-end template for building web apps or sites using Pug(Jade) and Sass
Stars: ✭ 92 (+338.1%)
Mutual labels:  local-development
ask-toolkit-for-vscode
ASK Toolkit is an extension for Visual Studio Code (VSC) that that makes it easier for developers to develop and deploy Alexa Skills.
Stars: ✭ 90 (+328.57%)
Mutual labels:  local-development
magento-ngrok
Magento 2 module for ngrok.io service support
Stars: ✭ 45 (+114.29%)
Mutual labels:  local-development
Https Localhost
HTTPS server running on localhost
Stars: ✭ 122 (+480.95%)
Mutual labels:  local-development
Wflow
🐆 EXPERIMENTAL -- Runs GitHub Actions workflows locally (local) -- Don't run your YAML like a 🐪
Stars: ✭ 187 (+790.48%)
Mutual labels:  local-development
Coronary-Artery-Tracking-via-3D-CNN-Classification
The PyTorch re-implement of a 3D CNN Tracker to extract coronary artery centerlines with state-of-the-art (SOTA) performance. (paper: 'Coronary artery centerline extraction in cardiac CT angiography using a CNN-based orientation classifier')
Stars: ✭ 136 (+547.62%)
Mutual labels:  vessel
Vvv Provision Flipper
🐬 Quickly toggle between different VVV provisioning scripts
Stars: ✭ 80 (+280.95%)
Mutual labels:  local-development
wpacked
📦 WPacked is a WordPress development starter kit with portability and immediate local development in mind.
Stars: ✭ 73 (+247.62%)
Mutual labels:  local-development
Localroast
Mock a server for development and testing
Stars: ✭ 217 (+933.33%)
Mutual labels:  local-development
docker-mkcert
Docker container for creating valid local ssl certificates
Stars: ✭ 87 (+314.29%)
Mutual labels:  local-development
Nitro
Speedy local dev environment for @craftcms
Stars: ✭ 156 (+642.86%)
Mutual labels:  local-development
Docker Compose Development
Clone and `bin/dev up`. Quickly start of developing locally with Nginx, PHP, Blackfire, Percona, Mailhog and Redis. Out of the box support for Magento2 Developer Box
Stars: ✭ 171 (+714.29%)
Mutual labels:  local-development
istio-workspace
Safely develop and test on any Kubernetes cluster without affecting others.
Stars: ✭ 55 (+161.9%)
Mutual labels:  local-development
Whirl
Fast iterative local development and testing of Apache Airflow workflows
Stars: ✭ 111 (+428.57%)
Mutual labels:  local-development
local-wordpress-development
WordPress Local Web Development Guide for Mac OS X
Stars: ✭ 17 (-19.05%)
Mutual labels:  local-development
Porter
A docker based multi-site setup for local PHP development. Inspired by Laravel Valet, Homestead and Vessel.
Stars: ✭ 92 (+338.1%)
Mutual labels:  local-development
npmy
`npm/npx/npm link` on steroids.
Stars: ✭ 58 (+176.19%)
Mutual labels:  local-development
symfony-docker
A template for new Symfony applications using Docker: ./install.sh && 🚀
Stars: ✭ 34 (+61.9%)
Mutual labels:  local-development
LocalCoverage.jl
Trivial functions for working with coverage for packages locally.
Stars: ✭ 55 (+161.9%)
Mutual labels:  local-development
docker-lemp
A single container LEMP complete fullstack with latest release of PHP7.4.33, 8.0.26 & 8.1.13/8.2RC and MySQL, nginx, PostgreSQL, phalcon, swoole, mailcatcher, beanstalkd, elasticsearch, memcached, redis, adminer and all you ever need; on top alpine3.15
Stars: ✭ 106 (+404.76%)
Mutual labels:  local-development

fireworkweb/fwd

ATTENTION - fwd is dead, long live kool

The FWD project has been discontinued in favour of our new solution - kool. FWD has helped a lot for development teams to leverage Docker containers for local development. kool now continues the same mission with more power and flexibility, plus it aims at making cloud native software development easy for individuals and teams, as well as has a strong maintainer team behind commited to make it grow in adoption and features.

The new kool tool is available and should be used for any new projects. Also please take a look at the https://blog.kool.dev and look for now to migrate from fwd to kool (article soon to be published).

Below you will find original fwd README for the sake of historic value.


GitHub Workflow Status codecov

Installation & Requirements

You need to have PHP 7.2+ installed in order to run fwd.

curl -L "https://github.com/fireworkweb/fwd/raw/master/builds/fwd" -o /usr/local/bin/fwd
chmod +x /usr/local/bin/fwd

Getting started

Use in a new project

fwd is great for running Docker Compose based projects. If you wanna use it in your project simply go to the root folder and use:

fwd install

This will create the .fwd (environment variables) and docker-compose.yml (services definitions) files in your project (you probably want to have them versioned).

You should review the variables and services in both files to best suit them to your project needs. The out-of-the-box configuration is great for PHP Laravel applications. Special attention to the environment variables flexibity (check out the section down this README).

Simple usage

To start the services:

fwd start

To stop the services:

fwd stop

Note: stopping will destroy all your containers, as they should all be ephemeral. Don't worry, important data should always be stored in volumes so they are kept amongst containers generations.

Other commands

There is a bunch of commands delivered out of the box. You can check a list of all of them by running fwd without other arguments to see the help message.

A couple of examples:

# PHP projects
fwd composer install # runs PHP Composer
fwd artisan migrate:fresh --seed # runs Laravel artisan CLI tool

# JS projects
fwd yarn install # runs Yarn install
fwd yarn dev     # runs a package.json defined script

# Custom docker and docker-compose
fwd docker-compose logs -f http # tails the logs of the http service

Environment variables

fwd is very flexible for you to tweak and change behaviors using environment variables. Variables like FWD_HTTP_PORT that holds the port http service will bind to, for example, can easily be changed in a number of ways, find the one that best fits your needs.

The precedence is as follows (from the highest to the lowest precedence):

  1. In-line/exported environment variables. (i.e FWD_DEBUG=1 fwd ...)
  2. .env file in the current working directory (dotenv file format; usually not versioned in your project).
  3. .fwd file in the current working directory (this file holds project specific fwd settings that usually are versioned with the project).
  4. $HOME/.fwd file; so you can have user-system specific changes easily across the board if needed.
  5. Defaults .fwd distributed file bundled in fwd CLI; subject to changes with new versions.

License

The MIT License (MIT). Please see License File for more information.

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].