logsql

Version, currently 0.2.01 version
  • 0.2.0latestMay 11, 2016

github.com/adam12/devjournal

My own developer journal tool

6 stars
0 dependents
License: MIT

Installation

# Add this to your shard.yml
dependencies:
  logsql:
    github: adam12/devjournal
    version: ~> 0.2.0

Then run:

shards install

shard.yml

Crystal
no constraint declared
License
MIT
Author
Adam Daniels <adam@mediadrive.ca>

Dependencies

Runtime Dependencies

  • sqlite3*github: manastech/crystal-sqlite3

README

# DevJournal

I'd been reading [Jesper L. Andersen's](https://medium.com/@jlouis666/on-logbooks-e2380ab2f8f0) Medium post about
*logbooks* when something just clicked. **I needed to start my own logbook.**

Inspired by [Logger-TXT](https://github.com/grantlucas/Logger-TXT) by [Grant Lucas](https://github.com/grantlucas).

## Why another tool?

Although I like Logger-TXT, I wanted something built on SQLite.

## Installation


TODO: Write installation instructions here


## Usage

Upon first initialization, a logfile will be created at `~/log.sqlite3`.

### Display Log Entries

	$ log

### Add a single line entry

	$ log This is an example line entry

### Add a multiple line entry

	$ log -

## Development

	$ git clone https://github.com/adam12/log
	$ cd log
	$ crystal deps
	$ crystal run src/log.cr

## Possible new features

* Markdown?
* Tags
* Date range search
* Custom log location

## Contributing

1. Fork it ( https://github.com/adam12/devjournal/fork )
2. Create your feature branch (git checkout -b my-new-feature)
3. Commit your changes (git commit -am 'Add some feature')
4. Push to the branch (git push origin my-new-feature)
5. Create a new Pull Request

## Contributors

- [adam12](https://github.com/adam12) Adam Daniels - creator, maintainer