Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kikytokamuro/feedread
Simple Atom/RSS reader
https://github.com/kikytokamuro/feedread
atom php rss rss-feed
Last synced: about 1 month ago
JSON representation
Simple Atom/RSS reader
- Host: GitHub
- URL: https://github.com/kikytokamuro/feedread
- Owner: KikyTokamuro
- License: mit
- Created: 2024-02-25T14:14:14.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-04-23T06:45:51.000Z (8 months ago)
- Last Synced: 2024-04-29T13:58:36.400Z (8 months ago)
- Topics: atom, php, rss, rss-feed
- Language: PHP
- Homepage:
- Size: 302 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FeedRead
Simple Atom/RSS reader
## Run
```sh
# Copy env file
cp .env.local .env# Change DB_DATABASE in .env
# Install Laravel dependencies
composer install# Install nodejs dependencies
npm install# Build assets
npm run build# Generate key
php artisan key:generate# Migrate database
php artisan migrate# Serve
php artisan serve# Go to http://localhost:8000/
```## Run in Docker
```sh
# Copy env file
cp .env.docker .env# Run docker
docker-compose up -d# Generate key
docker-compose exec app php artisan key:generate# Migrate database
docker-compose exec app php artisan migrate# Go to http://localhost:8000/
```