Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/unnikked/segnalibro

Save and comment your favorite links from the web. It's just a bookmarking application.
https://github.com/unnikked/segnalibro

bookmark laravel laravel5 laravel55 php self-hosted web-application webapp

Last synced: 26 days ago
JSON representation

Save and comment your favorite links from the web. It's just a bookmarking application.

Awesome Lists containing this project

README

        

# Segnalibro

Save and comment your favorite links from the web. It's just a bookmarking application.

Built with Laravel 5.6 - [Screenshots](https://imgur.com/a/G2fO5)

# Documentation

### Install

Supports only PHP 7.1

```
git clone https://github.com/unnikked/Segnalibro.git
cd Segnalibro
composer install
cp .env.example .env
php artisan key:generate
```

Now configure your database, for a quick run use SQLite. Edit your .env file with

```
DB_CONNECTION=sqlite
# delete the rest DB_ related entries
```

And create the database and migrate

```
touch database/database.sqlite
php artisan migrate
```

Serve it with `php artisan serve`.