Package Data | |
---|---|
Maintainer Username: | loganhenson |
Maintainer Contact: | logan@loganhenson.com (Logan Henson) |
Package Create Date: | 2017-02-18 |
Package Last Update: | 2017-02-23 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-11 15:20:08 |
Package Statistics | |
---|---|
Total Downloads: | 20 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 1 |
Total Watchers: | 1 |
Total Forks: | 0 |
Total Open Issues: | 0 |
This is a full Laravel local development experience (opinionated) which comes with:
This can be compared to:
First ensure you have the system dependencies.
Now install and start Dinghy
brew tap codekitchen/dinghy
brew install dinghy
dinghy create --provider virtualbox
Next install the package through Composer.
{
"require": {
"loganhenson/raft": "~1.0"
}
}
And add the service provider to your application.
config/app.php
...
'providers' => [
'...',
LoganHenson\Raft\RaftServiceProvider::class
];
...
Up
php artisan raft:up
Up with SSL
php artisan raft:up --secure
Down
php artisan raft:down
Sequel Pro
php artisan raft:sql
Composer
docker exec raft_app_1 composer
Yarn
docker exec raft_app_1 yarn
App
docker exec -it raft_app_1 bash
Redis
docker exec -it raft_redis_1 bash
MariaDB
docker exec -it raft_database_1 bash
Queue
docker exec -it raft_queue_1 bash
View the site @ http://raft.docker or https://raft.docker
Q: It isn't working!
dinghy restart
Q: Chrome always puts my site on https!
raft.docker
in the "Delete Domain" input and press deleteQ: How do I add more/different containers??
View the license for this repo.