Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/algebraic-sofia/quack

🦆 | A quake log parser (it's for an interview)
https://github.com/algebraic-sofia/quack

Last synced: 3 months ago
JSON representation

🦆 | A quake log parser (it's for an interview)

Awesome Lists containing this project

README

        

# Quack

A quake log parser to analyze kill score points

## How to Run

Before running Quack, you need to have golang installed on your system. Once you have it set up you
can follow these steps:

1. Clone the repository
```
> git clone https://github.com/algebraic-sofia/quack
```

2. Navigate to the project and run with a file in the standard input
```
> cd quack
> cat log.txt | go run cmd/quack/main.go
```

## Running tests

Quack comes with a set of tests to ensure it's working. To run these tests you simply need to run
the following command:

```
> go test -v internal/*
```