Fleet is the lightweight, programmable telemetry platform for servers and workstations. Get comprehensive, customizable data from all your devices and operating systems — without the downtime risk.
Go to file
2016-08-19 18:39:31 -07:00
datastore add build container for testing in ci (#89) 2016-08-19 20:05:24 -04:00
errors Add GetLabelQueriesForHost (#86) 2016-08-19 11:24:59 -07:00
frontend Email-based password reset (#54) 2016-08-12 12:20:29 -07:00
kolide Add GetLabelQueriesForHost (#86) 2016-08-19 11:24:59 -07:00
server Removing bindata.go 2016-08-19 18:39:31 -07:00
tools New flag to disable banner: --disable-banner (#80) 2016-08-17 16:53:28 -07:00
.gitignore Domain Types (#83) 2016-08-18 14:16:44 -07:00
circle.yml add build container for testing in ci (#89) 2016-08-19 20:05:24 -04:00
docker-compose.yml add build container for testing in ci (#89) 2016-08-19 20:05:24 -04:00
glide.lock Ingest status and result logs (#77) 2016-08-17 12:45:29 -07:00
glide.yaml Ingest status and result logs (#77) 2016-08-17 12:45:29 -07:00
kolide.go Add GetLabelQueriesForHost (#86) 2016-08-19 11:24:59 -07:00
Makefile Session shuffle and rename app to server (#84) 2016-08-18 17:45:39 -07:00
meta_test.go Session shuffle and rename app to server (#84) 2016-08-18 17:45:39 -07:00
package.json React Base (#61) 2016-08-09 22:15:44 -07:00
README.md Organizing the README a wee bit (#82) 2016-08-18 11:04:56 -07:00

Kolide CircleCI

Contents

Development Environment

Installing build dependencies

To setup a working local development environment, you must install the following minimum toolset:

Once you have those minimum requirements, to install build dependencies, run the following:

make deps

Building

Generating the packaged JavaScript

To generate all necessary code (bundling JavaScript into Go, etc), run the following:

go generate

Compiling the kolide binary

On UNIX (OS X, Linux, etc), run the following to compile the application:

go build -o kolide

On Windows, run the following to compile the application:

go build -o kolide.exe

Managing Go Dependencies with Glide

Glide is a package manager for third party Go libraries. See the "How It Works" section in the Glide README for full details.

Installing the correct versions of dependencies

To install the correct versions of third package libraries, use glide install. glide install will use the glide.lock file to pull vendored packages from remote vcs. make deps takes care of this step, as well as downloading the latest version of glide for you.

Adding new dependencies

To add a new dependency, use glide get [package name]

Updating dependencies

To update, use glide up which will use VCS and glide.yaml to figure out the correct updates.

Testing application code with glide

Finally, you can use go test $(glide novendor) to skip tests in the vendor directory. This will run go test over all directories of your project except the vendor directory.

Automatic recompilation

If you're editing mostly frontend JavaScript, you may want the Go binary to be automatically recompiled with a new JavaScript bundle and restarted whenever you save a JavaScript file. To do this, instead of running kolide serve, run the following:

make watch

This is only supported on OS X and Linux.

Testing

Application tests

To run the application's tests, run the following from the root of the repository:

go test

From the root, go test will run a test launcher that executes go test and go vet in the appropriate subpackages, etc. If you're working in a specific subpackage, it's likely that you'll just want to iteratively run go test in that subpackage directly until you are ready to run the full test suite.

Viewing test coverage

When you run go test from the root of the repository, test coverage reports are generated in every subpackage. For example, the sessions subpackage will have a coverage report generated in ./sessions/sessions.cover

To explore a test coverage report on a line-by-line basis in the browser, run the following:

# substitute ./errors/errors.cover, ./app/app.cover, etc
go tool cover -html=./sessions/sessions.cover

To view test a test coverage report in a terminal, run the following:

# substitute ./errors/errors.cover, app/app.cover, etc
go tool cover -func=./sessions/sessions.cover

Testing Email

To intercept sent emails while running a Kolide development environment, make sure that you've set the SMTP address to <docker host ip>:1025 and leave the username and password blank. Then, visit <docker host ip>:8025 in a web browser to view the MailHog UI.

For example, if docker is running natively on your localhost, then your mail settings should look something like:

{
  "mail": {
    "address": "localhost:1025",
    "pool_connections": 4
  }
}

Development infrastructure

Starting the local development environment

To set up a canonical development environment via docker, run the following from the root of the repository:

docker-compose up

This requires that you have docker installed. At this point in time, automatic configuration tools are not included with this project.

Stopping the local development environment

If you'd like to shut down the virtual infrastructure created by docker, run the following from the root of the repository:

docker-compose down

Setting up the database tables

Once you docker-compose up and are running the databases, you can build the code and run the following command to create the database tables:

kolide prepare db

Running Kolide

Now you are prepared to run a Kolide development environment. Run the following:

kolide serve

If you're running the binary from the root of the repository, where it is built by default, then the binary will automatically use the provided example configuration file, which assumes that you are running docker locally, on localhost via a native engine.

You may have to edit the example configuration file to use the output of docker-machine ip instead of localhost if you're using Docker via Docker Toolbox.