Will Neki be a branch of [Citus](https://github.com/citusdata/citus) or is it more based on Vitess?
HN user
sethreno
https://github.com/sethreno http://stackoverflow.com/users/50225/seth-reno
Is your service open source? I'd be interested in testing it. Also, you could speed up formatting in CI by only formatting files that changed.
I wish their was a standard c# formatter too. dotnet-format doesn't support wrapping long lines which is one of the more important features in my opinion.
Resharper has a free command line tool that supports wrapping long lines. https://www.jetbrains.com/help/resharper/CleanupCode.html
I made a wrapper for it to try and make it easier to use. https://github.com/sethreno/ReGitLint#regitlint
In my experience installing updates to Jenkins has been painless, 2.0 was no different.
I prefer to think of db version control and db migrations as two separate things.
Version control achieved by keeping the SQL scripts to create the database in your VCS along with the code that depends on it.
Migration scripts are created later as a pre-deployment step. I prefer not to store these scripts in VCS because in my experience they are typically run once and never used again. There are several tools that can generate the migration scripts by comparing two schemas e.g. dev-->prod.
I wrote an open source command line tool that can be used to create VCS friendly create scripts from a SQL Server database. It's on github at https://github.com/sethreno/schemazen#schema-zen---script-an...
Also, here are a few tools that I've used to generate migrations scripts: * http://opendbiff.codeplex.com/ * http://www.sqldbtools.com/Tools.aspx?ProductId=1 * http://www.red-gate.com/products/sql-development/sql-compare...