Giter Site home page Giter Site logo

gurindersingh / laravel-shaarli Goto Github PK

View Code? Open in Web Editor NEW

This project forked from marceauka/shaark

0.0 1.0 0.0 4.38 MB

All in one plateform for your links, stories and passwords. Built with Laravel and Vue.js.

PHP 65.11% Vue 16.74% HTML 18.15%

laravel-shaarli's Introduction

Laravel Shaarli

It's a free and open source platform to host by yourself.

Shaarli allows you to save your web links (websites, youtube videos, ...), to share your stories and manage your web accounts.

All of your content can be private or public and can be browsed by tags or all-in-one search.

It's ready to use for production. Laravel Shaarli is inspired by Shaarli but built with Laravel and Vue.js.

Summary

Requirements

  • Linux or macOS env
  • PHP >= 7.2
  • MySQL >= 5.7 (or SQLite >= 3)
  • Node.js >= 6
  • (Optional) Redis
  • (Optional) youtube-dl

Features

  • Links : to save a web content such a website or a youtube video
  • Stories : posts with markdown content
  • Chests : to save your web accounts
  • Rapid sharing through bookmark extension
  • Tagging system, search and RSS feeds
  • Private content or entirely private
  • Original Shaarli import
  • Export
  • Dark mode
  • i18n (english and french)
  • NEW Archiving
  • NEW 2-FA with email
  • RSS feed

Screenshots

Homepage

Installation

git clone https://github.com/MarceauKa/laravel-shaarli && cd laravel-shaarli
cp .env.example .env # Then edit it
composer install

Then run php artisan shaarli:install (for interactive installation) or php artisan migrate --seed (with default data). Default user is [email protected] with password secret.

Archiving

Each link you share can be archived the way you want:

  • youtube-dl when available on your system, will be used to download media from youtube, soundcloud, vimeo and few more sites.

  • Puppeteer will be used by default to save the webpage as a PDF.

You can adjust archiving configuration in the settings section.

Security

Global privacy

If you don't want your content being publicy accessible, you can update this preference once application is installed from settings section.

2-FA

You're able to active 2-FA (2 factors authentication). By default 2-FA is disabled but you can update it from your app settings. Code length and code expiration are also configurable. Test if you application can send emails before enabling this feature.

Auth monitoring

Shaarli logs all successful and failed auths with their associated devices.

Chests encryption

Since 1.2.9, all chests data are encrypted in your database using AES-256-CBC and your app key.

Update

Update the application by running:

php artisan down
git reset --hard
git pull origin master
composer install --no-dev -o
php artisan migrate --force -n
php artisan optimize
php artisan view:clear
php artisan queue:restart # if you're using queues
php artisan up

Going live

Check these options before going live.

Composer flags

composer install --no-dev -o

.env options

APP_ENV=production
APP_DEBUG=false
APP_URL=https://{your_url}
CACHE_DRIVER=file # or redis
SESSION_DRIVER=file # or redis
QUEUE_CONNECTION=sync # or redis, database
MAIL_DRIVER=smtp
MAIL_FROM_NAME={your_name}
MAIL_FROM_ADDRESS={your_email}

Artisan routines

php artisan optimize
php artisan view:clear

Artisan commands

Install command

php artisan shaarli:install

This command will install default data (seeder) or ask you for the default user.

Encrypt and decrypt

Encryption is made on the fly for your chests, but you can manually encrypt or decrypt them by running php artisan shaarli:chests:encrypt or php artisan shaarli:chests:decrypt.

Tests

  1. Be sure to have a testing database with touch database/testing.sqlite and have composer require-dev dependencies installer.
  2. Run testing server php artisan serve --env=testing.
  3. Run tests php artisan dusk --env=testing

Licence

MIT

laravel-shaarli's People

Contributors

marceauka avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.