Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Interview_internal_reference | 34,839 | 21 days ago | 30 | Python | ||||||
2023年最新总结,阿里,腾讯,百度,美团,头条等技术面试题目,以及答案,专家出题人分析汇总。 | ||||||||||
Awesome Programming Books | 3,649 | 10 months ago | 4 | |||||||
📚 经典技术书籍推荐,持续更新... | ||||||||||
Front End Tutorial | 1,639 | 3 years ago | n,ull | PHP | ||||||
:panda_face: 最全的资源教程-前端涉及的所有知识体系,并在 Nice Front-end Tutorial 持续更新; | ||||||||||
Vue Mall | 1,262 | 5 years ago | 10 | mit | Vue | |||||
🔨 基于 vue+node+mongodb 实现一个锤子商城 | ||||||||||
Netkiller.github.io | 1,137 | 16 days ago | HTML | |||||||
Netkiller Free ebook - 免费电子书 | ||||||||||
Springbootunity | 856 | a year ago | 5 | mit | Java | |||||
rabbitmq、redis、scheduled、socket、mongodb、Swagger2、spring data jpa、Thymeleaf、freemarker etc. (muti module spring boot project) (with spring boot framework,different bussiness scence with different technology。) | ||||||||||
Cuteone | 831 | 2 years ago | 60 | Python | ||||||
这大概是最好的onedrive挂载程序了吧,我猜。 | ||||||||||
Minos | 669 | 4 years ago | 6 | other | JavaScript | |||||
一个基于Tornado/mongodb/redis的社区系统。 | ||||||||||
Blog | 642 | 6 years ago | 2 | apache-2.0 | JavaScript | |||||
前后端分离+服务端渲染的博客系统. 基于Vue2、Koa2、MongoDB、Redis | ||||||||||
Fullstack Javascript Architecture | 608 | 10 months ago | mit | JavaScript | ||||||
✍️ Opinionated project architecture for Full-Stack JavaScript Applications. |
#Symfony 2 Vagrant Development setup
####This setup is based and tested with Ubuntu Precise 64 bit base box, with Vagrant 1.0.5 version (should be working with 1.1)
Install Vagrant using the installation instructions
If you are on Windows OS install NFS support plugin more information and detailed installation instructions:
vagrant plugin install vagrant-winnfsd
Clone this repository
$ git clone https://github.com/irmantas/symfony2-vagrant.git
install git submodules
$ cd symfony2-vagrant && git submodule update --init
run vagrant (for the first time it should take up to 10-15 min)
$ vagrant up
Web server is accessible with http://33.33.33.100 (IP address can be changed in Vagrantfile)
PhpMyAdmin is accessible with http://33.33.33.100/phpmyadmin
Vagrant automatically setups database with this setup:
$ composer self-update
to get the newest version)####Startup speed
To speed up the startup process use $ vagrant up --no-provision
(thanks to caramba1337)
####Install Symfony Standard edition
SSH to vagrant $ vagrant ssh
Clone symfony standard edition to somewhere temporary
$ git clone https://github.com/symfony/symfony-standard.git /tmp/symfony
Move symfony repository to server document root
$ mv /tmp/symfony/.git /vagrant/www/
Reset repository to restore project files
$ cd /vagrant/www && git reset --hard HEAD
Install dependencies
$ cd /vagrant/www && composer update
Edit web/app_dev.php
to allow host
You tell me