https://github.com/maymeow/links-short
Link shortener
https://github.com/maymeow/links-short
Last synced: over 1 year ago
JSON representation
Link shortener
- Host: GitHub
- URL: https://github.com/maymeow/links-short
- Owner: MayMeow
- Created: 2025-01-19T18:04:57.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-19T20:28:55.000Z (over 1 year ago)
- Last Synced: 2025-03-10T02:10:25.221Z (over 1 year ago)
- Language: PHP
- Size: 427 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Links shortening app
:warning: THis is very early alpha many thinsg are under construction :construction: and not working as intended.
- Salt is generated while image building
## What is implemented
- [] Landing page
- [x] Links database
- [] Creating New links via API
- [] Authentication and authorization
- [x] Wokring links redirect (from short ID)
### Short ID
I have already implemented shortening ID but this is object of change and therefore it can be changed in future.
## Installation
```bash
# clone this repository
# Create data folder & set permissions
mkdir ./data && chown 11235:11235 ./data
# Download docker image & run migration
docker compose pull
docker compose run --rm app php bin/cake.php migrations migrate --no-lock
docker compose up -d
```