From fda7245f7ca95deedb11dff95b8e6ff9702c2ac1 Mon Sep 17 00:00:00 2001 From: manhlab Date: Wed, 7 Apr 2021 06:46:38 -0400 Subject: [PATCH] update readme --- README.md | 328 ++++++++++++++++++++++++++++++++++++++++++++++++----- install.md | 38 +++++++ 2 files changed, 340 insertions(+), 26 deletions(-) create mode 100644 install.md diff --git a/README.md b/README.md index bdf1f2e..5471976 100644 --- a/README.md +++ b/README.md @@ -1,38 +1,314 @@ -## Usage +

+ Laradock Logo +

-``` bash -# Clone this project -git clone https://github.com/ThanhSonITNIC/qlvbdh.git +

+ contributions welcome + GitHub forks + GitHub issues + GitHub stars + GitHub CI + Build status + GitHub license +

-# Enter the laradock folder -cd qlvbdh/laradock +

Full PHP development environment based on Docker.

-# Copy file env-example to .env -cp env-example .env +

+ forthebadge +

-# Build containers -docker-compose build nginx mysql phpmyadmin workspace +
+
-# Run containers -docker-compose up -d nginx mysql phpmyadmin workspace +

Use Docker First - Learn About It Later!

-# Enter the workspace -docker-compose exec workspace bash +

+ + Laradock Documentation + +

-# Rename file env-example to .env -cp .env.example .env -# Install packages -composer install +## Join Us -# Generate application key -php artisan key:generate +[![Gitter](https://badges.gitter.im/Laradock/laradock.svg)](https://gitter.im/Laradock/laradock?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) -# Migrate database & seeders -php artisan migrate:fresh --seed +[![Gitpod](https://img.shields.io/badge/Gitpod-ready--to--code-blue)](https://gitpod.io/#https://github.com/laradock/laradock) -# Run the worker -php artisan queue:work -``` +--- + + +## Awesome People + +Laradock is an MIT-licensed open source project with its ongoing development made possible entirely by the support of all these smart and generous people, from code contributors to financial contributors. 💜 + + +### Project Maintainers + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ Mahmoud Zalt +
+ @mahmoudz +
+ +
+ Bo-Yi Wu +
+ @appleboy +
+ +
+ Philippe Trépanier +
+ @philtrep +
+ +
+ Mike Erickson +
+ @mikeerickson +
+ +
+ Dwi Fahni Denni +
+ @zeroc0d3 +
+ +
+ Thor Erik +
+ @thorerik +
+ +
+ Winfried van Loon +
+ @winfried-van-loon +
+ +
+ TJ Miller +
+ @sixlive +
+ +
+ Yu-Lung Shao (Allen) +
+ @bestlong +
+ +
+ Milan Urukalo +
+ @urukalo +
+ +
+ Vince Chu +
+ @vwchu +
+ +
+ Huadong Zuo +
+ @zuohuadong +
+ +
+ Lan Phan +
+ @lanphan +
+ +
+ Ahkui +
+ @ahkui +
+ +
+ < Join Us > +
+ @laradock +
+ +### Code Contributors + +[![Laradock Contributors][contributors-src]][contributors-href] + +### Financial Contributors + +[![Open Collective backers][backers-src]][backers-href] + +You can support us using any of the methods below: + +1: [Open Collective](https://opencollective.com/laradock) +
+2: [Paypal](https://paypal.me/mzmmzz) +
+3: [Github Sponsors](https://github.com/sponsors/Mahmoudz) +
+4: [Patreon](https://www.patreon.com/zalt) + +--- + + +## Sponsors + +Sponsoring is an act of giving in a different fashion. 🌱 + + +### Gold Sponsors + +

+ +CasinoPilotti +We thank bestonlinecasino.com for their support +Apiato Build PHP API's faster + + + + + + + + + + + + + + + + + + + + +

+ +### Silver Sponsors + +

+ + + + + + + + + + + + + + + + + + + + + + + +

+ +### Bronze Sponsors + +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+ + +You can sponsor us using any of the methods below: + +1: Sponsor via [Open Collective](https://opencollective.com/laradock/). +
+2: Email us at support@laradock.io. + +*Sponsors logos are displayed on the [github repository](https://github.com/laradock/laradock/) page and the [documentation website](http://laradock.io/) home page.* + +## License + +[MIT](https://github.com/laradock/laradock/blob/master/LICENSE) © Mahmoud Zalt + + +[comment]: # (Open Collective Tiers) + +[contributors-src]: https://opencollective.com/laradock/contributors.svg?width=890&button=false&isActive=true +[contributors-href]: https://github.com/laradock/laradock/graphs/contributors +[backers-src]: https://opencollective.com/laradock/tiers/awesome-backers.svg?width=890&button=false&isActive=true +[backers-href]: https://opencollective.com/laradock#contributors + +[gold-sponsors-src]: https://opencollective.com/laradock/tiers/gold-sponsors.svg?avatarHeight=80&width=890&button=false&isActive=true +[gold-sponsors-href]: https://opencollective.com/laradock#contributors +[silver-sponsors-src]: https://opencollective.com/laradock/tiers/silver-sponsors.svg?avatarHeight=64&width=890&button=false&isActive=true +[silver-sponsors-href]: https://opencollective.com/laradock#contributors +[bronze-sponsors-src]: https://opencollective.com/laradock/tiers/bronze-sponsors.svg?avatarHeight=48&width=890&button=false&isActive=true +[bronze-sponsors-href]: https://opencollective.com/laradock#contributors -Open your browser and visit localhost: http://localhost diff --git a/install.md b/install.md new file mode 100644 index 0000000..bdf1f2e --- /dev/null +++ b/install.md @@ -0,0 +1,38 @@ +## Usage + +``` bash +# Clone this project +git clone https://github.com/ThanhSonITNIC/qlvbdh.git + +# Enter the laradock folder +cd qlvbdh/laradock + +# Copy file env-example to .env +cp env-example .env + +# Build containers +docker-compose build nginx mysql phpmyadmin workspace + +# Run containers +docker-compose up -d nginx mysql phpmyadmin workspace + +# Enter the workspace +docker-compose exec workspace bash + +# Rename file env-example to .env +cp .env.example .env + +# Install packages +composer install + +# Generate application key +php artisan key:generate + +# Migrate database & seeders +php artisan migrate:fresh --seed + +# Run the worker +php artisan queue:work +``` + +Open your browser and visit localhost: http://localhost