1
0
Fork 0
mirror of https://github.com/SinTan1729/chhoto-url synced 2024-10-16 13:27:03 -05:00
A simple, blazingly fast, selfhosted URL shortener with no unnecessary features; written in Rust. https://hub.docker.com/r/sintan1729/chhoto-url
Find a file
Przemek Dragańczuk 425b8a5f44 Official name!
2020-04-18 22:53:01 +02:00
.settings Base api works 2020-02-13 23:52:33 +01:00
gradle/wrapper Random intellij fixes 2020-02-14 18:40:36 +01:00
src/main Official name! 2020-04-18 22:53:01 +02:00
.classpath Base api works 2020-02-13 23:52:33 +01:00
.gitattributes Base api works 2020-02-13 23:52:33 +01:00
.gitignore Sqlite as storage backend (#1) 2020-03-24 09:07:25 +01:00
.project Base api works 2020-02-13 23:52:33 +01:00
build.gradle Sqlite as storage backend (#1) 2020-03-24 09:07:25 +01:00
docker-compose.yml Sqlite as storage backend (#1) 2020-03-24 09:07:25 +01:00
Dockerfile Added basic docker support 2020-02-14 20:17:56 +01:00
gradlew Base api works 2020-02-13 23:52:33 +01:00
gradlew.bat Base api works 2020-02-13 23:52:33 +01:00
LICENSE Create LICENSE 2020-02-14 22:37:43 +01:00
README.md Official name! 2020-04-18 22:53:01 +02:00
screenshot.png Added a screenshot 2020-02-16 14:50:49 +01:00
settings.gradle Base api works 2020-02-13 23:52:33 +01:00

What is it?

A simple selfhosted URL shortener with no name because naming is hard

But why another URL shortener?

I've looked at a couple popular URL shorteners, however they either have unnecessary features, or they didn't have all the features I wanted.

Features

  • Shortens URLs of any length to a fixed length, randomly generated string
  • (Optional) Allows you to specify the shortened URL instead of the generated one (Missing in a surprising number of alternatives)
  • Opening the fixed length URL in your browser will instantly redirect you to the correct long URL (you'd think that's a standard feature, but apparently it's not)
  • Provides a simple API for adding new short links
  • Links are stored in an SQLite database
  • Available as a Docker container (there is no image on docker hub yet)
  • Backend written in Java using Spark Java, frontend written in plain HTML and vanilla JS, using Pure CSS for styling

Screenshot

Screenshot

Planned features for 1.0 (in order of importance

  • Better deduplication
  • Code cleanup
  • Official Docker Hub image

Usage

Clone this repository

git clone https://github.com/draganczukp/simply-shorten

Building from source

Gradle 6.x.x and JDK 11 are required. Other versions are not tested

1. Build the .jar file

gradle build --no-daemon

The --no-daemon option means that gradle should exit as soon as the build is finished. Without it, gradle would still be running in the background in order to speed up future builds.

2. Set environment variables

# Required for authentication
export username=<api username>
export password=<api password>
# Sets where the database exists. Can be local or remote (optional)
export db.url=<url> # Default: './urls.sqlite'

3. Run it

java -jar build/libs/url.jar

Running with docker

docker run method

  1. Build the image
docker build . -t shorten:latest
  1. Run the image
docker run -p 4567:4567
    -d url:latest
    -e username="username"
    -e password="password"
    -d shorten:latest

2.a Make the database file available to host (optional)

touch ./urls.sqlite
docker run -p 4567:4567 \
    -e username="username" \
    -e password="password" \
    -v ./urls.sqlite:/urls.sqlite \
    -e db.url=/urls.sqlite \
    -d shorten:latest

docker-compose

There is a sample docker-compose.yml file in this repository configured for Traefik. You can use it as a base, modifying it as needed. Run it with

docker-compose up -d --build