Package Data | |
---|---|
Maintainer Username: | imonroe |
Package Create Date: | 2016-01-29 |
Package Last Update: | 2022-12-31 |
Home Page: | https://coldreader.net |
Language: | PHP |
License: | GPL-3.0-or-later |
Last Refreshed: | 2025-02-06 03:05:09 |
Package Statistics | |
---|---|
Total Downloads: | 36 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 1 |
Total Watchers: | 2 |
Total Forks: | 1 |
Total Open Issues: | 58 |
Coldreader is a casual, personal databasing system.
It may be helpful to think of it as something half-way between an mindmap and a private wiki. I use it in place of Evernote, as a personal information management tool. Out of the box, it may seem a little trivial, but once you start building it out with your own custom Aspects, you'll find that there's really no other tool like it.
It makes no assumptions about what kind of information you want to keep track. In Coldreader, there are essentially two kinds of things: Subjects, and Aspects.
A Subject can contain an arbitrary number of Aspects. Aspects are like a single piece of content. That may be text, an image, an API result, and so forth. By itself, a basic Aspect just stores its information as text in the database. But you can extend simple aspects with a little bit of code so that they can behave however you like. By modifying the boilerplate with your own logic, you can retrieve API results, perform a calculation, whatever you like. For more information, see Developing Custom Aspects below.
Coldreader is primarily aimed at people who are comfortable with basic web development using PHP and Javascript. It's built using Laravel 5.6, Bootstrap 3, and Vue.js.
This is the open-source version. It is configured to support a single user, and includes some tools to make it easy to customize the system for your own uses.
Use cases:
Coldreader is based on Laravel 5.6, and requires a server that is capable of serving a Laravel project.
For specific information about server requirements, see the Laravel docs.
The Homestead vagrant box works just fine with Coldreader, and you can try it out in your local environment with no risk. For more information about using Laravel Homestead, check out their fantasic documentation.
Once you have an environment set up, you'll want to create a directory to hold the project, and an empty database. Make sure you note the credentials you set up for the database to make installation easy.
The simple way to install everything is to use Composer. If you plan on developing with Coldreader, you are encouraged to use the Git method.
$ cd /wherever/you/want/to/install/
$ composer create-project imonroe/coldreader .
Follow the prompts.
$ cd /wherever/you/want/to/install/
$ git clone https://github.com/imonroe/coldreader.git .
Wait for the installation to complete. Then run:
$ php firstrun.php
Follow the prompts.
The configuration script will ask if you'd like to install the npm dependencies. If you are planning on developing with Coldreader, you may want to do that now. It can take some time, however, and can safely be skipped if you're just trying out the software.
One of the nice things about Coldreader is that it's easy to create new Aspect Types and Search Providers to accomodate different kinds of data, and different ways of displaying it. There are some Aspect Types already available to try.
To install Coldreader add-on packages, use composer:
$ composer require <vendor>/<package_name>
$ composer update
Some add-on packages may require additional configuration. Consult the package repo for details for any individual add-on.
For instructions and examples for how to get started developing with Coldreader, please see the wiki.
Please see CHANGELOG for more information on what has changed recently.
$ composer test
Please see CONTRIBUTING and CONDUCT for details.
If you discover any security related issues, please email ian@ianmonroe.com instead of using the issue tracker.
GPL V3. Please see License File for more information.