{"id":13679583,"url":"https://github.com/devimust/easy-bookmark-manager","last_synced_at":"2025-04-29T19:31:27.768Z","repository":{"id":65101993,"uuid":"52642045","full_name":"devimust/easy-bookmark-manager","owner":"devimust","description":"Easy and simple self-hosted bookmark / snippet management tool.","archived":false,"fork":false,"pushed_at":"2018-05-05T00:32:21.000Z","size":3341,"stargazers_count":63,"open_issues_count":4,"forks_count":11,"subscribers_count":16,"default_branch":"master","last_synced_at":"2024-11-11T22:35:32.000Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devimust.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-02-27T00:38:33.000Z","updated_at":"2024-06-12T17:14:02.000Z","dependencies_parsed_at":"2023-01-02T01:17:57.606Z","dependency_job_id":null,"html_url":"https://github.com/devimust/easy-bookmark-manager","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devimust%2Feasy-bookmark-manager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devimust%2Feasy-bookmark-manager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devimust%2Feasy-bookmark-manager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devimust%2Feasy-bookmark-manager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devimust","download_url":"https://codeload.github.com/devimust/easy-bookmark-manager/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251569548,"owners_count":21610575,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-02T13:01:07.164Z","updated_at":"2025-04-29T19:31:26.655Z","avatar_url":"https://github.com/devimust.png","language":"PHP","funding_links":[],"categories":["PHP"],"sub_categories":[],"readme":"## Bookmarks - Easy bookmark manager\n\nEasy (and fast) self-hosted bookmark manager.\n\n![alt text](https://github.com/devimust/easy-bookmark-manager/raw/master/resources/assets/images/screenshot1.png \"Screenshot 1\")\n\n### Demo\n\nYou can test easy-bookmark-manager here : [demo](http://bookmarkdemo.miceli.click/)\n\nTo access use **admin** as login and **nimda** as password.\n\nYou can also download easy-bookmark-manager [chrome plugin](https://chrome.google.com/webstore/detail/easy-bookmark-manager-ext/hhonlfdhoejpaofmmppaogebkfnbgefi)\n\nAnd use this url : http://bookmarkdemo.miceli.click/ as target\n\n![target](http://img15.hostingpics.net/pics/837402EasyBookmarkManagerOptionsGoogleChrome2.jpg)\n\n### Requirements\n\n* webserver (apache2, nginx)\n* php 5.5.9+\n* Laravel 5.2\n* mysql (or laravel supported database)\n\n\n### Installation\n\nStep 1:\n```bash\n$ git clone git@github.com/devimust/easy-bookmark-manager.git\n$ cd easy-bookmark-manager\n$ composer install\n$ npm install\n$ gulp --production\n```\n\nStep 2: Update database details inside `.env` file.\n\nStep 3:\n```bash\n$ php artisan migrate --seed #this will create the default admin user\n```\n\nStep 4: Update `.env` file with `APP_ENV=production`. Ensure webserver user (apache, www-data or nginx) can read and write to the `./storage` and `./bootstrap/cache` folders recursively.\n\nStep 5: Navigate to http://insert-your-domain.com/ and login with email `admin` and password `nimda`. Go add some bookmarks or navigate to http://insert-your-domain.com/admin/users to create more users and *important* update the admin user's password.\n\nStep 6: Optional security measure - to disable the `/admin` section set `ADMIN_ENABLED=false` inside .env file.\n\nExample apache virtual host file\n\n```apache\n\u003cVirtualHost *:80\u003e\n    ServerName \u003cmy-bookmarks.domain.com\u003e\n    DocumentRoot /var/www/{PROJECT_FOLDER}/public\n    \u003cDirectory \"/var/www/{PROJECT_FOLDER}/public\"\u003e\n        Options Indexes FollowSymLinks\n        AllowOverride All\n        Options -Indexes\n    \u003c/Directory\u003e\n    ErrorLog ${APACHE_LOG_DIR}/error.log\n    CustomLog ${APACHE_LOG_DIR}/access.log combined\n\u003c/VirtualHost\u003e\n```\n\n\n### Development\n\nI welcome any feedback and contributions.\n\n\n#### Local native\n\n```bash\n# update .env with APP_ENV=local and APP_DEBUG=false\n$ composer install\n$ npm install\n$ gulp\n$ vendor/bin/phpunit\n$ gulp watch\n```\n\n#### Local docker LAMP stack\n\n```bash\n# run ./docker/prep-dev.sh\n# update .env with APP_ENV=local and APP_DEBUG=false\ndocker-compose build\ndocker-compose up\ndocker-compose run --rm composer install\ndocker-compose run --rm npm install\ndocker-compose run --rm gulp --production\ndocker-compose run --rm artisan key:generate\ndocker-compose run --rm phpunit\ndocker-compose run --rm artisan migrate:refresh --seed\ndocker-compose run --rm artisan db:seed --class=DummyBookmarksSeeder\n```\n\n#### Local docker LAMP stack using release candidate\n\nDownload latest release candidate and decompress into a folder, then\n\n```bash\ncp docker-compose.sample.yml docker-compose.yml\ncp .env.docker .env\ndocker-compose build\ndocker-compose up\ndocker-compose run --rm artisan key:generate\ndocker-compose run --rm artisan migrate:refresh --seed\ndocker-compose run --rm artisan db:seed --class=DummyBookmarksSeeder\n```\n\ngoto http://localhost:8000/ and login with `admin`:`nimda`\n\n\n### Chrome Extension\n\n[Easy Bookmark Manager Extension](https://chrome.google.com/webstore/detail/easy-bookmark-manager-ext/hhonlfdhoejpaofmmppaogebkfnbgefi)\n\n[Source](https://github.com/devimust/easy-bookmark-manager-chrome-extension)\n\n\n### Dev Dependencies and Credits\n\n* jQuery 1.12\n* Angular \u0026 Angular Route\n* [Bootswatch](http://bootswatch.com)\n* [Bootstrap 3](http://getbootstrap.com/)\n* FontAwesome\n* NodeJS\n* Composer\n* Gulp\n* Select2\n* Sass\n* [Ace](https://ace.c9.io/)\n* Normalize.css\n\n\n### Todos\n\n* Reset password via email\n\n\n### License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevimust%2Feasy-bookmark-manager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevimust%2Feasy-bookmark-manager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevimust%2Feasy-bookmark-manager/lists"}