https://github.com/iamwebwiz/mediumly
A minimalistic Medium clone built with Laravel, Vue and Tailwind CSS
https://github.com/iamwebwiz/mediumly
articles laravel58 medium php7 resource-controller tailwindcss vue vue-router
Last synced: 8 months ago
JSON representation
A minimalistic Medium clone built with Laravel, Vue and Tailwind CSS
- Host: GitHub
- URL: https://github.com/iamwebwiz/mediumly
- Owner: iamwebwiz
- Created: 2019-05-21T16:39:39.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-03T22:38:18.000Z (about 3 years ago)
- Last Synced: 2025-06-20T22:50:25.597Z (9 months ago)
- Topics: articles, laravel58, medium, php7, resource-controller, tailwindcss, vue, vue-router
- Language: PHP
- Homepage:
- Size: 1.64 MB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 12
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Mediumly
> A minimalistic [Medium.com](https://medium.com) clone built with Laravel PHP Framework and Tailwind CSS
## Installation
- Clone the repository
```
git clone https://github.com/iamwebwiz/mediumly.git
```
- Navigate into `mediumly` directory
```
cd ./mediumly
```
- Copy the contents of `.env.example` to `.env`
```
cp .env.example .env
```
- Install composer dependencies
```
composer install
```
- Generate Application Key
```
php artisan key:generate
```
Configure your database variables in `.env`
- Run migrations and seeders
```
php artisan migrate --seed
```
## Demo
- Check out the demo [here](https://mediumly.herokuapp.com)
- [Login here](https://mediumly.herokuapp.com/login)
**Admin Credentials**
- Email: admin@mediumly.com
- Password: securepass
## Test
Run tests with this command on your terminal:
```
composer test
```
Cheers!!!