LinkStack/README.md

68 lines
1.4 KiB
Markdown
Raw Normal View History

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