Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/unnikked/segnalibro
- Owner: unnikked
- License: mit
- Created: 2017-10-13T21:11:43.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-07-19T17:36:39.000Z (over 6 years ago)
- Last Synced: 2024-09-27T19:21:04.628Z (about 1 month ago)
- Topics: bookmark, laravel, laravel5, laravel55, php, self-hosted, web-application, webapp
- Language: PHP
- Homepage:
- Size: 809 KB
- Stars: 13
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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`.