The clean & modern RSS server that doesn't give you any crap. https://thearsse.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
J. King 3a26c75044 Tests for Database::meta*() functions 7 years ago
lib Tests for Database::meta*() functions 7 years ago
locale Minimally functional, highly experimental, working server 7 years ago
sql/SQLite3 Basic support for PicoFeed content scraping 7 years ago
tests Tests for Database::meta*() functions 7 years ago
.gitattributes Converted all hard tabs to soft tabs 7 years ago
.gitignore Docblocks for Conf 7 years ago
LICENSE Add license file and skeleton of readme 7 years ago
README.md Experimental curl-based Service driver 7 years ago
arsse.php Changed Misc\DateFormatter to a collection of static methods and renamed it to Date; renamed Data to Arsse to avoid confusion and better reflect its centrality 7 years ago
bootstrap.php More Linux/macOS fixes 7 years ago
composer.json Docblocks for Conf 7 years ago
composer.lock Docblocks for Conf 7 years ago
phpdoc.dist.xml Docblocks for Conf 7 years ago

README.md

Arsse: Advanced RSS Environment

TODO: Fill in stuff

Requirements

Arsse has the following requirements:

  • A Web server; example configuration currently exists for:
    • nginx
    • Apache 2
  • PHP 7.0.7 or newer with the following extensions:
  • One of the following supported databases, and the PHP extension to use it:
    • SQLite 3.8.3 or newer
    • PostgreSQL 8.4 or newer
    • MySQL 8.0.1 or newer
    • MariaDB 10.2.2 or newer
  • The ability to run background services on the server; service files currently exist for:
    • systemd
    • launchd
    • sysvinit

FIXME: The requirements listed are prospective and not representative of the actual requirements as of this writing. Currently only SQLite is supported, no Web server configuration has yet been written, and no background process yet exists, never mind service files to run it.

License

Arsse is made available under the permissive MIT license. See the LICENSE file included with the distribution or source code for exact legal text. Dependencies included in the distribution may be governed by other licenses.

Running tests

To run the test suite, you must have Composer installed as well as the command-line PHP interpreter (this is normally required to use Composer). Port 8000 must also be available for use by the built-in PHP Web server.

# first install dependencies
composer install
# run the tests
./tests/test

The example uses Unix syntax, but the test suite also runs in Windows. By default all tests are run; you can pass the same arguments to the test runner as you would to PHPUnit:

./tests/test --testsuite "Configuration"