Skip to content

Commit 9adee73

Browse files
committed
Add more readme
1 parent 46b8150 commit 9adee73

4 files changed

Lines changed: 14 additions & 17 deletions

File tree

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,8 @@ You can do this by following the steps below:
2121
2. Once the configuration is done, you may now initialize runtimes from your private repository by doing `devstack init the_runtime_name`.
2222
3. To download the latest runtimes in your repository, run `devstack download`.
2323

24+
## Running Docker Compose Commands
25+
1. If your are greeted by `Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?` after running a command, this means that your docker or docker desktop is not running.
26+
2. If you are greeted by `no configuration file provided: not found` after running a command, this means that your current directory doesn't have the docker-compose.yml file.
27+
3. If you are greeted by `service "<service>" is not running container #1` after running the following services `redis`, `mysql`, `php`, `composer`, and `composer`, this means that the containers are not yet up. Do `devsatck up -d` to start.
28+
4. If your are greeted by `Could not open input file: artisan` after running `devstack artisan`, this means that the current runtime you are running has no Laravel Artisan command or is not a Laravel project.

TOOD.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
## Todos
2+
- Add `make:runtime` or `create` command to generate runtime boilerplates.
3+
- Add support for custom non-standard name of docker-compose.yml
4+
- Add more services

devstack

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ use Webteractive\Devstack\Commands\RunComposerCommands;
1919
use Webteractive\Devstack\RegisterDockerComposeCommands;
2020
use Webteractive\Devstack\Commands\RunLaravelArtisanCommand;
2121

22-
$app = new App('Devstack', '1.1.5');
22+
$app = new App('Devstack', '1.1.7');
2323

2424
$app->add(new InitStack);
2525
$app->add(new Config);

src/App.php

Lines changed: 4 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,10 @@ class App extends Application
88
{
99
private static $name = "MyApp";
1010
private static $logo = <<<LOGO
11-
DDDDDDDDDDDDD tttt kkkkkkkk
12-
D::::::::::::DDD ttt:::t k::::::k
13-
D:::::::::::::::DD t:::::t k::::::k
14-
DDD:::::DDDDD:::::D t:::::t k::::::k
15-
D:::::D D:::::D eeeeeeeeeeee vvvvvvv vvvvvvv ssssssssss ttttttt:::::ttttttt aaaaaaaaaaaaa cccccccccccccccc k:::::k kkkkkkk
16-
D:::::D D:::::D ee::::::::::::ee v:::::v v:::::v ss::::::::::s t:::::::::::::::::t a::::::::::::a cc:::::::::::::::c k:::::k k:::::k
17-
D:::::D D:::::D e::::::eeeee:::::eev:::::v v:::::vss:::::::::::::s t:::::::::::::::::t aaaaaaaaa:::::a c:::::::::::::::::c k:::::k k:::::k
18-
D:::::D D:::::De::::::e e:::::e v:::::v v:::::v s::::::ssss:::::stttttt:::::::tttttt a::::ac:::::::cccccc:::::c k:::::k k:::::k
19-
D:::::D D:::::De:::::::eeeee::::::e v:::::v v:::::v s:::::s ssssss t:::::t aaaaaaa:::::ac::::::c ccccccc k::::::k:::::k
20-
D:::::D D:::::De:::::::::::::::::e v:::::v v:::::v s::::::s t:::::t aa::::::::::::ac:::::c k:::::::::::k
21-
D:::::D D:::::De::::::eeeeeeeeeee v:::::v:::::v s::::::s t:::::t a::::aaaa::::::ac:::::c k:::::::::::k
22-
D:::::D D:::::D e:::::::e v:::::::::v ssssss s:::::s t:::::t tttttta::::a a:::::ac::::::c ccccccc k::::::k:::::k
23-
DDD:::::DDDDD:::::D e::::::::e v:::::::v s:::::ssss::::::s t::::::tttt:::::ta::::a a:::::ac:::::::cccccc:::::ck::::::k k:::::k
24-
D:::::::::::::::DD e::::::::eeeeeeee v:::::v s::::::::::::::s tt::::::::::::::ta:::::aaaa::::::a c:::::::::::::::::ck::::::k k:::::k
25-
D::::::::::::DDD ee:::::::::::::e v:::v s:::::::::::ss tt:::::::::::tt a::::::::::aa:::a cc:::::::::::::::ck::::::k k:::::k
26-
DDDDDDDDDDDDD eeeeeeeeeeeeee vvv sssssssssss ttttttttttt aaaaaaaaaa aaaa cccccccccccccccckkkkkkkk kkkkkkk
11+
__| | _____ _____| |_ __ _ ___| | __
12+
/ _` |/ _ \ \ / / __| __/ _` |/ __| |/ /
13+
| (_| | __/\ V /\__ \ || (_| | (__| <
14+
\__,_|\___| \_/ |___/\__\__,_|\___|_|\_\
2715
LOGO;
2816

2917
public function __construct($name = 'UNKNOWN', $version = 'UNKNOWN')

0 commit comments

Comments
 (0)