You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Go to file
dependabot-preview[bot] ebdc384454
Merge pull request #56 from Lynnesbian/dependabot/pip/markovify-0.8.3
3 years ago
.github removed patreon 3 years ago
.vscode added vscode settings 4 years ago
app removed patreon 3 years ago
db provide webfinger and actor info with rsa key for secure fetch 3 years ago
.gitignore okay, NOW multithreading works properly, and can i just say: holy fuck it's SO MUCH FASTER 3 years ago
LICENSE Initial commit 4 years ago
README.md better mysql instructions 3 years ago
logo.png new logo 4 years ago
requirements.txt Bump markovify from 0.8.2 to 0.8.3 3 years ago
run.sh reorganised directory structure 4 years ago

README.md

FediBooks

A web UI for creating your very own ebooks bots.

Selfhosting

FediBooks is currently unfinished - many functions don't work yet, and future updates may make major, breaking changes. I don't recommend self-hosting it yet unless you're willing to work through the potential growing pains.

  1. Install python3 and mariadb or mysql. If you're installing on Windows, make sure to check "Add Python to PATH" during Python installation.

  2. Install the requirements, using pip:

# pip3 install -r ./requirements.txt

If this doesn't work, try using pip instead. If it still doesn't work, you might have to install an additional package (for example, python-pip on Arch Linux).

  1. Copy the app/config.sample.json file to app/config.json.

  2. Fill in the app/config.json file.

  3. Run python3 app/setup.py and follow the on-screen prompts.

  4. Open the MySQL prompt (using the mysql command) and type in the following commands:

CREATE DATABASE `fedibooks`;
CREATE USER 'myuser' IDENTIFIED BY 'mypassword';
GRANT ALL PRIVILEGES ON `fedibooks`.* TO 'myuser';
FLUSH PRIVILEGES;
exit

where fedibooks is your database name, myuser is your database username and mypassword is your database user's password.

  1. Run
# mysql -u USERNAME -p DATABASE < db/setup.sql

where USERNAME is your database username and DATABASE is your database name.

  1. Run ./run.sh to start FediBooks.