Simple web gallery app created with Laravel, Bootstrap and MySQL/PostgreSQL
Here you can view images. Click on the image to expand. You can also sort images by tags and categories.
On this page, the admin can add, edit and delete images.
To create an image, the admin must fill in the details and upload the image. To add tags, you need to enter a name and press enter. The image metadata is stored in the database, and the image file itself is stored on the local file system.
Project is created with:
- Laravel
- Bootstrap
- MySQL/PostgreSQL
- NodeJS
# Clone this repository
$ git clone https://github.com/Souii/webgallery.git
# Go into the repository
$ cd webgallery
# Install php dependencies
$ composer install
# Generate the application key
$ php artisan key:generate
# Run migrations
$ php artisan migrate
# To compile assets
$ npm install && npm run dev