Skip to content
This repository has been archived by the owner on Jan 14, 2024. It is now read-only.

Latest commit

 

History

History
34 lines (26 loc) · 1.03 KB

README.md

File metadata and controls

34 lines (26 loc) · 1.03 KB

FastFeed

A beautiful fast RSS-Reader with modern Webtechnology to improve mobile use on realy slow networks

Dependabot Status Dependency Status Dependency Status

/client

cd ./client

  • Setup: npm i
  • Development: npm run dev
  • Build: npm run build
    • before running the command, set the following env variables:
      • API_URL=https://fastfeed.hackedit.de/server
    • build output is located at /dist

/server

  1. create a file at ./server/config.php and put in your credentials:
<?php
  $db_prefix = "...";
  $db_host = "...";
  $db_user = "..." ;
  $db_pw = "...";
  $db_name = "..." ;
?>
  1. deploy the ./server directory

Note: An example database sql file is located at /server/database