Alexandre Alapetite 4f785865ba Readme import-for-user 9 anni fa
..
.htaccess e1f214e9e2 CLI list-users and create-user 9 anni fa
README.md 4f785865ba Readme import-for-user 9 anni fa
_cli.php ab4ece6780 CLI do-install 9 anni fa
actualize-user.php 879af85d3c +x execution rights actualie-user 9 anni fa
create-user.php c8e5292ab7 CLI minor formatting 9 anni fa
delete-user.php fcb9280fc8 CLI export 9 anni fa
do-install.php 1171461a29 +x execution rights do-install 9 anni fa
export-opml-for-user.php 1f03e8a3ae CLI typo in usage example 9 anni fa
export-zip-for-user.php c8e5292ab7 CLI minor formatting 9 anni fa
import-for-user.php fcb9280fc8 CLI export 9 anni fa
index.html e1f214e9e2 CLI list-users and create-user 9 anni fa
list-users.php 1b8eb6c7e7 CLI import ZIP/OPML/JSON for user 9 anni fa

README.md

FreshRSS Command-Line Interface (CLI)

Note on access rights

When using the command-line interface, remember that your user might not be the same as the one used by your Web server. This might create some access right problems.

It is recommended to invoke commands using the same user as your Web server:

cd /usr/share/FreshRSS
sudo -u www-data sh -c './cli/list-users.php'

In any case, when you are done with a series of commands, you should re-apply the access rights:

cd /usr/share/FreshRSS
sudo chown -R :www-data .
sudo chmod -R g+r .
sudo chmod -R g+w ./data/

Commands

Options in parenthesis are optional.

cd /usr/share/FreshRSS

./cli/do-install.php --default_user admin --auth_type form  ( --environment production --base_url https://rss.example.net/ --language en --title FreshRSS --allow_anonymous --api_enabled --db-type mysql --db-host localhost:3306 --db-user freshrss --db-password dbPassword123 --db-base freshrss --db-prefix freshrss )
# The default database is SQLite
# Does not create the default user. Do that with ./cli/create-user.php

./cli/create-user.php --user username ( --password 'password' --api-password 'api_password' --language en --email user@example.net --token 'longRandomString' --no-default-feeds )

./cli/delete-user.php --user username

./cli/list-users.php
# Return a list of users, with the default/admin user first

./cli/actualize-user.php --user username

./cli/import-for-user.php --user username --filename /path/to/file.ext
# The extension of the file { .json, .opml, .xml, .zip } is used to detect the type of import

./cli/export-opml-for-user.php --user username > /path/to/file.opml.xml

./cli/export-zip-for-user.php --user username ( --max-feed-entries 100 ) > /path/to/file.zip