Changed name of folder, project etc.

This commit is contained in:
SinTan1729 2022-11-11 17:50:12 -06:00
parent 3598199957
commit 99073bfd6c
7 changed files with 13 additions and 10 deletions

View File

@ -2,8 +2,6 @@
# ![Logo](src/main/resources/public/assets/favicon-32.png) <span style="font-size:42px">Simply Shorten</span> # ![Logo](src/main/resources/public/assets/favicon-32.png) <span style="font-size:42px">Simply Shorten</span>
A fork of [this project](https://gitlab.com/draganczukp/simply-shorten).
# What is it? # What is it?
A simple selfhosted URL shortener with no unnecessary features. A simple selfhosted URL shortener with no unnecessary features.
@ -143,3 +141,8 @@ an exact value:
INSECURE_DISABLE_PASSWORD=I_KNOW_ITS_BAD INSECURE_DISABLE_PASSWORD=I_KNOW_ITS_BAD
``` ```
Any other value will not work. Any other value will not work.
## Notes
- This is a fork of [this project](https://gitlab.com/draganczukp/simply-shorten).
- The list of adjectives and names used for random short url generation is a modified
version of [this list used by docker](https://github.com/moby/moby/blob/master/pkg/namesgenerator/names-generator.go).

View File

@ -13,7 +13,7 @@ repositories {
jar { jar {
manifest { manifest {
attributes "Main-Class": "tk.draganczuk.url.App" attributes "Main-Class": "tk.sintan1729.url.App"
} }
from { from {
@ -29,5 +29,5 @@ dependencies {
} }
application { application {
mainClassName = 'tk.draganczuk.url.App' mainClassName = 'tk.sintan1729.url.App'
} }

View File

@ -1,4 +1,4 @@
package tk.draganczuk.url; package tk.sintan1729.url;
import static spark.Spark.*; import static spark.Spark.*;

View File

@ -1,4 +1,4 @@
package tk.draganczuk.url; package tk.sintan1729.url;
import com.qmetric.spark.authentication.AuthenticationDetails; import com.qmetric.spark.authentication.AuthenticationDetails;
import com.qmetric.spark.authentication.BasicAuthenticationFilter; import com.qmetric.spark.authentication.BasicAuthenticationFilter;

View File

@ -1,4 +1,4 @@
package tk.draganczuk.url; package tk.sintan1729.url;
import org.eclipse.jetty.http.HttpStatus; import org.eclipse.jetty.http.HttpStatus;
import spark.Request; import spark.Request;

View File

@ -1,4 +1,4 @@
package tk.draganczuk.url; package tk.sintan1729.url;
import java.sql.*; import java.sql.*;
import java.util.ArrayList; import java.util.ArrayList;

View File

@ -1,4 +1,4 @@
package tk.draganczuk.url; package tk.sintan1729.url;
import java.util.Random; import java.util.Random;
import java.util.regex.Pattern; import java.util.regex.Pattern;