Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/zozs/paperjam

Keeps track of your important scanned documents
https://github.com/zozs/paperjam

Last synced: 7 days ago
JSON representation

Keeps track of your important scanned documents

Awesome Lists containing this project

README

        

paperjam
========

Keeps track of your important scanned documents.

## License
Licensed under the ISC License. See the file LICENSE.

## Installation

### Requirements
* PostgreSQL >= 9.2
* PHP

### Installation steps
TODO

#### Modify path
You may have to modify the ``-tag in `index.html` depending on where you place Paperjam in the web root.

#### Create databases
TODO

#### Configure Apache
Use the following settings to get a correct URL rewriting. Adapt `/srv/http` and `/srv/paperjam` to your own environment.

```

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^api api.php [QSA,L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.html [QSA,L]

Alias /paperjam/files /srv/paperjam/files

# You probably want the same access control mechanism here as you want on the directory above.

```