A Google-like bookmarks platform built with AdonisJs
I always used the Google bookmarks website to save my bookmarks, because it's simple and does the job. But let's be honest, it still looks like a website built in the nineties.
For this reason I decided to build my own version of it, learning in the meantime how to use the AdonisJs framework. The frontend is built with the awesome Tailwind framework.
Run the command below to install all dependencies
$ npm install
Duplicate .env.example
and rename it .env
. Fill the file with the required values.
Run the following command to migrate the database
$ adonis migration:run
Finally, start the application with hot reload
$ adonis serve --dev
and visit http://127.0.0.1:3333/ to see the application in action.