Skip to content

Commit

Permalink
moved everything and got dep to pass (#14)
Browse files Browse the repository at this point in the history
* moved everything and got dep to pass

* added very basic build script

* protos are broken

* protos generating correctly

* build works except for docs

* remove unecessary install scripts

* got docs pushing works

* renamed chart

* basic CLI

* added basic schema functionality

* helm manifest works properly now

* event loop is working

* added kube install

* install command works

* basic feature parity with the CLI

* started basic example, and moved schema

* can actually start playing with queries now

* upgraded gloo

* finished basic tutorial

* example really works now

* spelling mistake

* cleaned up protos from PR

* removed commented code besides tests

* created CLI tests

* all old unit tests are passing

* midway through docs work

* creating cli docs

* added cli-gen to code-gen

* upped gloo version to 0.7.6

* thanks marco, can now install into any namespace :)

* updated code-gen

* more checking on install command

* made docs more closely match docs repo

* getting started on kubernetes doc is now accurate

* updated examples

* removed docs from local dir

* was in wrong dir

* added docs gen to release build

* removed unused code from tests
  • Loading branch information
EItanya committed Feb 21, 2019
1 parent 7aa1f59 commit b4482c3
Show file tree
Hide file tree
Showing 309 changed files with 12,291 additions and 14,892 deletions.
14 changes: 0 additions & 14 deletions .firebaserc

This file was deleted.

30 changes: 30 additions & 0 deletions .githooks/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
#!/bin/sh
# Copyright 2012 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.

# git gofmt pre-commit hook
#
# To use, store as .git/hooks/pre-commit inside your repository and make sure
# it has execute permissions.
#
# This script does not handle file names that contain spaces.

gofiles=$(git diff --cached --name-only --diff-filter=ACM | grep '\.go$')
[ -z "$gofiles" ] && exit 0

unformatted=$(gofmt -l $gofiles)
badimports=$(goimports -l $gofiles)
[ -z "$unformatted" ] && [ -z "$badimports" ] && exit 0

# Some files are not gofmt'd or goimport'd. Print message and fail.

echo >&2 "Go files must be formatted with gofmt and goimport. Please run:"
for fn in $unformatted; do
echo >&2 " gofmt -w $PWD/$fn"
done
for fn in $badimports; do
echo >&2 " goimports -w $PWD/$fn"
done

exit 1
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,10 @@ cmd/sqoopctl/sqoopctl
site/
test/kube_e2e/kube_resources/test-install.yaml
test/kube_e2e/kube_resources/testing-resources.yaml

# IDE
.idea
.vscode

# mac files
.DS_Store
2 changes: 0 additions & 2 deletions Dockerfile.site

This file was deleted.

Loading

0 comments on commit b4482c3

Please sign in to comment.