What is this application?
This is a simple blogging application with the following features:
- Anyone can login/register
- Users can be 'admin', 'author' or 'subscriber'.
- Authors can write/update/delete their own posts.
- Admin has full access on the website and can read/ write/ update/ delete any of the posts.
- Anyone can read these posts 6.Users can comment on the posts (only after login)
- users (default + role)
- posts (id, author, title, body, slug, published_on, last_modified, active)
- comments (id, on_post, from_user, body, at_time)
- Edit the .env.example file to match your database and rename to .env
- Set up and run the migrations I am also attaching my sql file You can import it also.
-
Ensure that the permissions on the storage folder are set correctly. You will get a 500 error otherwise.
-
Ensure that you have set the correct image path for justboil.me to the appropriate folder or just use the default /images and make sure that folder has the correct permissions to upload images (usually owned by the webserver user).