The clean & modern RSS server that doesn't give you any crap. https://thearsse.com/
Find a file
2017-06-02 14:12:36 -04:00
lib Added topmost folder to output of subscriptionList. Fixes #54 2017-06-01 18:12:08 -04:00
locale Feed tests: fetching and parsing 2017-05-27 18:15:52 -04:00
sql/SQLite3 Simplify in-database settings 2017-06-01 16:24:11 -04:00
tests Improvements to database test harness 2017-06-02 14:12:36 -04:00
.gitattributes Converted all hard tabs to soft tabs 2017-02-16 14:29:42 -06:00
.gitignore Changed "NewsSync" to "Arsse" 2017-03-27 23:12:12 -05:00
autoload.php Eliminated passing of RuntimeData instances 2017-03-28 18:50:00 -04:00
bootstrap.php More Linux/macOS fixes 2017-05-21 22:20:21 -04:00
composer.json Remove dependency on Webmozart's Glob outside of testing 2017-06-01 13:50:46 -04:00
composer.lock Remove dependency on Webmozart's Glob outside of testing 2017-06-01 13:50:46 -04:00
LICENSE Add license file and skeleton of readme 2017-05-26 10:01:35 -04:00
README.md Document PHP extensions required by Arsse 2017-05-27 18:39:43 -04:00

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 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"