A small, selfhosted bookmark manager.

:warning: This application is still in development and not save to use! :warning:

 

## Development ### Setup I recommend using Docker for development. You need to have [Docker](https://www.docker.com/products/docker-desktop) installed on your machine. Then, simply run the following command to build your containers. ``` $ docker-compose up -d --build ``` Now, install all dependencies from inside the PHP container: ``` $ docker exec linkace-php bash -c "composer install" ``` Last step, compile all assets. You need [Node](https://nodejs.org/en/) with either NPM or [Yarn](https://yarnpkg.com) installed. Node 8 LTS is the minimum version required and recommended to use. ``` $ npm install OR $ yarn install $ ./node_modules/.bin/grunt build ``` ### Working with the Artisan command line I recommend using the Artisan command line tool in the PHP container only to make sure that the same environment is used. To do so, use the following example command: ``` $ docker exec linkace-php bash -c "php artisan migrate" ``` --- LinkAce is a project by [Kovah](https://kovah.de) | [Contributors](https://github.com/Kovah/LinkAce/graphs/contributors)