https://github.com/mohamedelashri/linkace
Linkace selfhosted bookmark using sqlite
https://github.com/mohamedelashri/linkace
Last synced: 7 months ago
JSON representation
Linkace selfhosted bookmark using sqlite
- Host: GitHub
- URL: https://github.com/mohamedelashri/linkace
- Owner: MohamedElashri
- License: mit
- Created: 2021-12-16T23:09:20.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-06-26T07:58:40.000Z (over 3 years ago)
- Last Synced: 2025-01-13T19:47:02.236Z (9 months ago)
- Language: Shell
- Homepage:
- Size: 5.86 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Linkace
Linkace selfhosted bookmark using sqlite database (more suitable for one person selfhosted solution like LinkAce)## Installation
Clone this repository
```
git clone https://github.com/MohamedElashri/Linkace
```Then move to the directory
```
cd Linkace
```The db directory must have a correct persmission so the container can write to the database file
```
chown 82:82 -R db
```Change `example.env` to `.env`
```
mv example.env .env
```Now lets fire `docker-compose`
```
docker-compose up -d
```Next create the APP_KEY by entering the following:
```
docker exec -it linkace-app-1 php artisan key:generate
```Do database migrarion
```
docker exec -it linkace-app-1 php artisan migrate
```Register a user via
```
docker exec -it linkace-app-1 php artisan registeruser
```Now because we had done the instllation manually lets edit `.env file`
change `SETUP_COMPLETED=false` to `SETUP_COMPLETED=ture`RUN the following permissions acquiring
```
chmod 666 .env
``````
chmod 777 linkace_logs/
```Enjoy!