Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Gopherus | 2,228 | 16 days ago | 3 | mit | Python | |||||
This tool generates gopher link for exploiting SSRF and gaining RCE in various servers | ||||||||||
Nacos Docker | 1,087 | 9 days ago | 49 | Shell | ||||||
This project contains a Docker image meant to facilitate the deployment of Nacos . | ||||||||||
Flat Server | 531 | 16 hours ago | 14 | mit | TypeScript | |||||
A Node.js server for the Agora Flat open source classroom. | ||||||||||
Docker Communityserver | 410 | 22 days ago | 53 | mit | Shell | |||||
Collaborative system for managing documents, projects, customer relations and emails in one place | ||||||||||
Wormhole | 370 | 8 years ago | June 04, 2021 | apache-2.0 | Go | |||||
A smart proxy to connect docker containers. | ||||||||||
Forsun | 213 | 9 months ago | 13 | March 20, 2020 | mit | Python | ||||
高性能的定时调度服务。 | ||||||||||
Easyswoole_admin | 152 | 2 years ago | 1 | PHP | ||||||
easyswoole写的后台,权限管理,前后分离模板 | ||||||||||
Docker Drupal | 133 | 4 years ago | 2 | Dockerfile | ||||||
Quick and dirty Drupal for development | ||||||||||
Myslowtrancapture | 116 | 8 years ago | 2 | gpl-2.0 | C++ | |||||
A tool to print MySQL transactions that take more than <n> milliseconds | ||||||||||
Short Link | 98 | 4 months ago | 19 | apache-2.0 | JavaScript | |||||
Shorten long urls |
include mysql
mysql::db { 'mydb': }
ATTENTION Boxen uses a non standard 13306 port to avoid collisions.
Once installed, you can access the following variables in your environment, projects, etc:
In config/database.yml:
<%
socket = [
ENV["BOXEN_MYSQL_SOCKET"],
"/var/run/mysql5/mysqld.sock",
"/tmp/mysql.sock"
].detect { |f| f && File.exist?(f) }
port = ENV["BOXEN_MYSQL_PORT"] || "3306"
%>
development: &development
adapter: mysql
database: yourapp_development
username: root
<% if socket %>
host: localhost
socket: <%= socket %>
<% else %>
host: 127.0.0.1
port: <%= port %>
<% end %>
# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this db to the same as development or production.
test:
<<: *development
database: yourapp_test
Write code.
Run script/cibuild
.