Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/howtocodewell/status-checker
- Owner: howToCodeWell
- Created: 2019-10-19T19:17:16.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-02-02T08:19:42.000Z (almost 2 years ago)
- Last Synced: 2023-03-03T15:03:36.527Z (almost 2 years ago)
- Language: PHP
- Size: 184 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
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
```