Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iliyan-trifonov/laravel-mylinks
https://mylinks.iliyan-trifonov.com/ Laravel Application
https://github.com/iliyan-trifonov/laravel-mylinks
Last synced: about 1 month ago
JSON representation
https://mylinks.iliyan-trifonov.com/ Laravel Application
- Host: GitHub
- URL: https://github.com/iliyan-trifonov/laravel-mylinks
- Owner: iliyan-trifonov
- License: mit
- Created: 2015-05-03T15:17:52.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-05-03T15:39:29.000Z (over 9 years ago)
- Last Synced: 2023-03-26T13:57:13.767Z (almost 2 years ago)
- Language: PHP
- Size: 484 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# My Links
[https://mylinks.iliyan-trifonov.com/](https://mylinks.iliyan-trifonov.com/ "My Links") Laravel ApplicationSave all of your interesting links on the site like bookmarks. Protect them behind your user account.
Paste your urls in the application and it fetches their icons and titles and saves them
remembering the date of creation of the url. Clicking on a saved link will open it in a new tab.There is a search functionality to help you find your link without browsing through all the pages.
The application supports url redirects so if such exist the final url will be saved.
For parsing the pages on the given urls [yangqi/htmldom](https://github.com/yangqi/htmldom "htmldom") is used.
For developing [barryvdh/laravel-debugbar](https://github.com/barryvdh/laravel-debugbar "laravel-debugbar") and
[barryvdh/laravel-ide-helper](https://github.com/barryvdh/laravel-ide-helper "laravel-ide-helper") are used.By default an SQLite database is used and is enough to handle a good number of users.
If you want to make a quick test of the site go to
[https://mylinks.iliyan-trifonov.com/login](https://mylinks.iliyan-trifonov.com/login "My Links") and use this default
account: [email protected]/1234 (email/pass).### Install (in production)
cd /var/www/
git clone https://github.com/iliyan-trifonov/laravel-mylinks.git mylinks
cd mylinks
composer self-update && composer install
touch app/database/production.sqlite
php artisan migrate --seed --force
chown -R www-data:www-data ./