1. 01 12月, 2015 1 次提交
    • B
      Replica set list: handle endpoints and descirption · f62b4688
      bryk 提交于
      This change handles replica set description end-to-end: saving in on the
      deploy form and then displaying. It also handles replica set endpoints.
      I also attempted to write tests for the go code, but this change grew
      too much. I'll do this later.
      f62b4688
  2. 25 11月, 2015 1 次提交
    • B
      Add more ESLint rules for JavaScript linting · 9b80b347
      bryk 提交于
      With this change I've gone through all ESLint rules at:
      http://eslint.org/docs/rules/ and added all of them that I feel make
      sense to the project.
      
      This will allow us to focus on business logic of our code, rather than
      on style discussions, which are now better guarded thanks to ESLint and
      clang-format.
      
      On the final note: it does not matter what concrete lint rules are
      enforced (e.g., semicolons or nor). The important part is that they are
      enforced by a tool and we do not spend time dicussing about them.
      
      Addresses: #66
      9b80b347
  3. 24 11月, 2015 1 次提交
  4. 04 11月, 2015 1 次提交
  5. 02 11月, 2015 2 次提交
    • B
      Use Godeps dependency managemen for the backend · d28e5295
      bryk 提交于
      The Godep tool is de facto standard in the Go and Kubernetes
      communities. So, the ealier this project switches to it, the better. The
      setup uses recommended layout from the project docs:
      https://github.com/tools/godep
      
      You might wonder why to pull entire Godeps folder here. This is how
      Godeps strongly advise to do.
      d28e5295
    • B
      Spawn backend application process on serve task · 690b146d
      bryk 提交于
      This setup autoreloads backend process on source change and ensures that
      there is only one process running.
      
      Follow up would be to wire this setup with browser sync to proxy API
      calls to the backend.
      690b146d
  6. 29 10月, 2015 2 次提交
  7. 27 10月, 2015 2 次提交
  8. 26 10月, 2015 1 次提交
    • B
      Gulp tasks that compiles backend application · 4fd7c318
      bryk 提交于
      This is initial version that can compile dev and prod targets of the
      app using Gulp. This task will likely evolve in the future to use better
      fo tooling. For now it works just fine.
      4fd7c318