Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Devilbox | 4,138 | 22 days ago | 51 | mit | PHP | |||||
A modern Docker LAMP stack and MEAN stack for local development | ||||||||||
Leetcode | 3,569 | 5 days ago | 16 | apache-2.0 | Java | |||||
Solutions to LeetCode problems; updated daily. Subscribe to my YouTube channel for more. | ||||||||||
Lamp | 2,716 | 21 days ago | 29 | gpl-3.0 | Shell | |||||
Install LAMP(Linux + Apache + MySQL/MariaDB + PHP ) for CentOS/Debian/Ubuntu | ||||||||||
Datastation | 2,699 | 2 months ago | 36 | other | TypeScript | |||||
App to easily query, script, and visualize data from every database, file, and API. | ||||||||||
Lnmp | 2,417 | 2 days ago | 5 | other | Shell | |||||
LNMP一键安装包是一个用Linux Shell编写的可以为CentOS/RHEL/Fedora/Aliyun/Amazon、Debian/Ubuntu/Raspbian/Deepin/Mint Linux VPS或独立主机安装LNMP(Nginx/MySQL/PHP)、LNMPA(Nginx/MySQL/PHP/Apache)、LAMP(Apache/MySQL/PHP)生产环境的Shell程序。 | ||||||||||
Docker Compose Lamp | 2,208 | 5 days ago | 21 | mit | Dockerfile | |||||
A basic LAMP stack environment built using Docker Compose. | ||||||||||
Treeio | 1,512 | 7 years ago | 47 | other | Python | |||||
Tree.io | ||||||||||
Docs4dev | 1,144 | 2 years ago | ||||||||
后端开发常用框架文档及中文翻译,包含 Spring 系列文档(Spring, Spring Boot, Spring Cloud, Spring Security, Spring Session),大数据(Apache Hive, HBase, Apache Flume),日志(Log4j2, Logback),Http Server(NGINX,Apache),Python,数据库(OpenTSDB,MySQL,PostgreSQL)等最新官方文档以及对应的中文翻译。 | ||||||||||
Netkiller.github.io | 1,137 | 12 days ago | HTML | |||||||
Netkiller Free ebook - 免费电子书 | ||||||||||
Ushahidi_web | 884 | 3 years ago | 254 | other | PHP | |||||
Ushahidi v2. A platform that allows information collection, visualization and interactive mapping, allowing anyone to submit information through text messaging using a mobile phone, email or web form. |
NOTE! This project has been deprecated in favor of sgphpug/Vagrant-LAMP-CentOS64
For anyone wanting to try out Vagrant, here's some sample code to help you setup your own LAMP dev sandbox quickly. It runs on CentOS 6.3 and the internal setup is done with Puppet.
Do note that the first run might take a while. Depending on your speed, 10 minutes to download the base VM (CentOS 6.3) and 5 minutes to startup and provision the VM. But subsequent startup should be quite fast.
You can spin up new boxes very easily. Just put your PHP scripts in the projects
folder and add a new vhost. If you are lazy, just throw your PHP files into the projects/webroot
folder.
This installs:
Install VirtualBox
Download from https://www.virtualbox.org/wiki/Downloads. Remember to download the VirtualBox Extension Pack.
Install Vagrant
Download from http://downloads.vagrantup.com.
Clone this repo into a local folder
$ git clone [email protected]:miccheng/vagrant-lamp-centos63.git phpdev $ git submodule init $ git submodule update
4. Start Vagrant
`cd` into the checked out folder to start the VM:
```bash
$ vagrant up
Update your host operating system's /etc/hosts
file with the following entry:
192.168.56.60 phpdev.local
Now, you can reach the webroot with http://phpdev.local
or http://localhost:8080
.
To login into the VM type
$ vagrant ssh
To stop the VM:
$ vagrant suspend
To halt the VM:
$ vagrant halt
To destroy the VM:
$ vagrant destroy
The phpMyAdmin URL: http://phpdev.local/phpmyadmin
or http://localhost:8080/phpmyadmin
.
Note: The MySQL username is root
and the root password is media1
. To change the default, edit manifests/db.pp
.
Based on the excellent work from Patrick Daether.