Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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/
```