1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-22 05:02:40 +00:00
The clean & modern RSS server that doesn't give you any crap.
Find a file
J. King fd1f23fd82 Docblocks for Conf
- Improves #36
- Updated dependencies
2017-07-16 22:27:55 -04:00
lib Docblocks for Conf 2017-07-16 22:27:55 -04:00
locale Minimally functional, highly experimental, working server 2017-07-15 16:44:06 -04:00
sql/SQLite3 More bug fixes 2017-07-15 13:33:17 -04:00
tests Fix NCNv1 tests 2017-07-16 11:51:18 -04:00
.gitattributes Converted all hard tabs to soft tabs 2017-02-16 14:29:42 -06:00
.gitignore Docblocks for Conf 2017-07-16 22:27:55 -04:00
arsse.php Minimally functional, highly experimental, working server 2017-07-15 16:44:06 -04:00
bootstrap.php More Linux/macOS fixes 2017-05-21 22:20:21 -04:00
composer.json Docblocks for Conf 2017-07-16 22:27:55 -04:00
composer.lock Docblocks for Conf 2017-07-16 22:27:55 -04:00
LICENSE Add license file and skeleton of readme 2017-05-26 10:01:35 -04:00
phpdoc.dist.xml Docblocks for Conf 2017-07-16 22:27:55 -04:00
README.md Experimental curl-based Service driver 2017-07-16 14:56: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.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"