Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Webim | 1,699 | 3 years ago | 36 | PHP | ||||||
使用PHP+Swoole实现的网页即时聊天工具 | ||||||||||
Mysql Sys | 764 | 3 years ago | 4 | other | PLpgSQL | |||||
The MySQL sys schema | ||||||||||
Flat Server | 580 | 8 days ago | 14 | mit | TypeScript | |||||
A Node.js server for the Agora Flat open source classroom. | ||||||||||
Ansible Roles | 475 | a year ago | 3 | mit | HTML | |||||
Ansible Roles | ||||||||||
Ccql | 300 | 4 years ago | 4 | mit | Go | |||||
Multi server MySQL client | ||||||||||
Mac Awesometools | 261 | 5 years ago | 1 | |||||||
mac常用软件等等,有你需要的! | ||||||||||
Ctlstore | 242 | a month ago | 8 | October 28, 2022 | 7 | mit | Go | |||
Control Data Store | ||||||||||
Docker | 238 | 7 hours ago | 33 | mit | Dockerfile | |||||
🐳 | ||||||||||
Dubbo D Monitor | 216 | 4 years ago | 8 | JavaScript | ||||||
dubbo monitor 基于dubbo2.5.3开发的监控平台,兼容了dubbo-admin的特性,有redis、mysql两个版本 | ||||||||||
Forsun | 213 | a year ago | 13 | March 20, 2020 | mit | Python | ||||
高性能的定时调度服务。 |
A Vagrant/VirtualBox dev machine set-up for Silverstripe development, using the popular ubuntu/xenial Vagrant box.
This set-up was created on a Windows 10 host machine, with VirtualBox v5.1.22, Vagrant v1.9.5, and Git Bash. If you have a different host O.S (e.g. a Linux distro), feel free to contribute :).
Credit goes to Nicolaas Thiemen Francken from Sunny Side Up Web Development for an excellent well-documented set-up, and also to the following GitHub gists:
Clone this repository to your desired location (e.g. C:\Users\YOURUSERNAME\Desktop).
Go into the new cloned folder, then right click "Git Bash Here".
You should now be in a folder as below:
C:\Users\YOURUSERNAME\Desktop\silverstripe-vagrant-dev-machine
Enter vagrant up --provision
to begin creating and provisioning your machine. This can take around 10 to 15 minutes, depending on your host machine's resources.
Once your machine has been created and provisioned, put the following entries into your Windows hosts file (C:\Windows\System32\drivers\etc\hosts):
127.0.0.1:8080 localhost
127.0.0.1:8080/phpmyadmin/ phpmyadmin.localhost
127.0.0.1:8080 server-default.localhost
You can access the above sites in your browser like so:
You can also access the Silverstripe test project by visiting http://test.localhost:8080.
To transfer files from your host machine to the newly-created guest machine via SFTP (e.g. with FileZilla), use the following details:
Host: 127.0.0.1
Username: silverstripedev
Password: silverstripe
Port: 2222
Default directory upon SFTP login is /var/www
To access phpMyAdmin, navigate to http://phpmyadmin.localhost:8080 in your browser, and use the following credentials:
To see server information (as displayed via PHP's 'phpinfo()' function), navigate to http://server-default.localhost:8080.
If you were experimenting with the set-up and broke the Vagrant machine, never fear! All you need to do is enter the following command to recreate said machine:
vagrant halt && vagrant destroy && vagrant up --provision
Want to help contribute and improve this set-up? Feel free to fork this repository and submit a push request. If you would like to adapt this for a Linux host machine, let me know and I'll create branches specific to the Linux distro and version.
Credit goes to Nicolaas Thiemen Francken from Sunny Side Up Web Development for an excellent well-documented set-up, and also to the following GitHub gists: