Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/howtocodewell/status-checker

A status checker for the public facing How To Code Well systems
https://github.com/howtocodewell/status-checker

Last synced: 26 days ago
JSON representation

A status checker for the public facing How To Code Well systems

Awesome Lists containing this project

README

        

# Status Checker

1 Create Docker machine

```
$ docker-machine create status-checker
$ docker-machine env status-checker
$ eval $(docker-machine env status-checker)
```

2 Adjust the .env file
```
$ cp .env.dist .env
$ vi .env
```

3 Run the install script
```
$ chmod +ux bin/* && ./bin/install
```
4 Run the database migrations and seeders
```
$ docker-compose exec site bash
$ ./artisan migrate
$ ./artisan db:seed --class=SiteTableSeeder
```

5 Open browser
```
$ docker-machine ip status-checker
$ open
```

# Uninstall
```
$ docker-machine rm status-checker
```