LinkStack/README.md

73 lines
1.6 KiB
Markdown
Raw Normal View History

2021-05-22 18:07:18 +04:30
## _⚙ LittleLink Admin_
2021-07-06 15:56:43 +07:00
Forked from [littlelink-admin]
2021-04-15 10:20:40 +04:30
2021-05-22 18:07:18 +04:30
LittleLink Admin is an admin panel for [littlelink] that provides you a website similar [linktree].
2021-04-15 10:20:40 +04:30
2021-05-03 23:01:50 +04:30
## 📑 Features
2021-04-15 10:20:40 +04:30
- creating a link page with more than 20 buttons
- raising important links on the page
2021-07-06 15:56:43 +07:00
- ordering links (new)
2021-04-15 10:20:40 +04:30
- counting clicks
- managing users and pages and links
- and ...
2021-05-03 23:01:50 +04:30
## ✨ Demo
2021-04-15 10:20:40 +04:30
[home] / [panel]
2021-05-03 23:01:50 +04:30
## 🔨 Install
2021-04-15 10:20:40 +04:30
```sh
2021-07-06 16:06:49 +07:00
git clone https://github.com/latuminggi/littlelink-admin
cd littlelink-admin
cp .env.example .env
composer update -vvv
2021-04-15 10:20:40 +04:30
```
2021-04-15 10:23:55 +04:30
2021-04-16 09:40:41 +04:30
- edit .env file
2021-04-15 10:23:55 +04:30
2021-07-06 16:11:00 +07:00
```sh
2021-07-06 16:06:49 +07:00
DB_DATABASE=YOUR_DB_NAME
DB_USERNAME=YOUR_DB_USER
DB_PASSWORD=YOUR_DB_PASS
APP_NAME="YOUR_APP_NAME"
2021-07-06 16:11:00 +07:00
```
- run migration & db seed
2021-04-16 03:38:11 +04:30
2021-04-15 10:20:40 +04:30
```sh
php artisan migrate
php artisan db:seed
2021-04-16 02:08:16 +04:30
(or commands below)
2021-04-15 10:20:40 +04:30
php artisan db:seed --class="AdminSeeder"
php artisan db:seed --class="PageSeeder"
php artisan db:seed --class="ButtonSeeder"
2021-07-06 16:11:00 +07:00
php artisan serve (optional)
2021-04-15 10:20:40 +04:30
```
2021-04-15 10:23:55 +04:30
2021-04-16 03:41:56 +04:30
- login:
2021-04-15 10:23:55 +04:30
2021-07-06 16:11:00 +07:00
```sh
2021-04-15 10:20:40 +04:30
email: admin@admin.com
password: 12345678
2021-07-06 16:11:00 +07:00
```
2021-04-15 10:20:40 +04:30
2021-05-03 23:01:50 +04:30
## 💞 Partners
2021-04-15 10:20:40 +04:30
- [littlelink]
- [laravel]
2021-04-17 04:20:38 +04:30
- [panel template]
2021-04-15 10:20:40 +04:30
2021-05-03 23:01:50 +04:30
## 🎲 [Donate](#donate)
2021-04-15 10:20:40 +04:30
@khashayarzavosh bitcoin: 1FQJWCZJoLKfJei7NFisTH65yNUjugJRi4
2021-04-15 10:20:40 +04:30
2021-07-06 15:56:43 +07:00
[littlelink-admin]: <https://github.com/khashayarzavosh/littlelink-admin>
2021-04-15 10:20:40 +04:30
[littlelink]: <https://github.com/sethcottle/littlelink>
[linktree]: <https://linktr.ee>
2021-05-22 18:07:18 +04:30
[home]: <https://github.com/khashayarzavosh/littlelink-admin/blob/main/demo-home.png>
[panel]: <https://github.com/khashayarzavosh/littlelink-admin/blob/main/demo-panel.png>
2021-04-15 10:20:40 +04:30
[laravel]: <https://github.com/laravel/laravel>
2021-07-06 16:06:49 +07:00
[panel template]: <https://colorlib.com/wp/bootstrap-sidebar>