├── .gitmodules ├── .gitignore └── README.md /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | .idea 3 | \#*\# 4 | .\#* 5 | .bundle 6 | bundler 7 | spec_reports 8 | spec_coverage 9 | ci-artifacts-dir 10 | ci-working-dir 11 | *.rbc 12 | *.swp 13 | .rvmrc 14 | nats-server.pid 15 | base/pkg 16 | coverage 17 | .gitreview 18 | bundle/ 19 | tmp 20 | */doc 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | This repository has been deprecated. 2 | ============= 3 | 4 | The NG MySQL and NG PostgresSQL services now are a part of the cf-services-release repo (https://github.com/cloudfoundry/cf-services-release). 5 | 6 | The other services (which the Cloud Foundry team is not actively supporting) are in the cf-services-contrib-release repo (https://github.com/cloudfoundry/cf-services-contrib-release) 7 | --------------------------------------------------------------------------------