mirror of https://github.com/TZGyn/shortener
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
633 B
Markdown
46 lines
633 B
Markdown
# Link Shortener
|
|
|
|
Link Shortener is a site to manage your short urls while providing analytics to the url traffics.
|
|
[Demo Here](https://shortener.tzgyn.com)
|
|
|
|
## Preview
|
|
|
|

|
|
|
|
### One Click Deploy on Railway
|
|
|
|
[](https://railway.app/template/bWnD5H?referralCode=bSruGU)
|
|
|
|
## Development
|
|
|
|
### Frontend
|
|
|
|
```bash
|
|
bun install
|
|
bun --bun run dev
|
|
```
|
|
|
|
### Redirect
|
|
|
|
```bash
|
|
bun install
|
|
bun --hot run src/index.ts
|
|
```
|
|
|
|
## Deployment
|
|
|
|
### Frontend
|
|
|
|
```bash
|
|
bun install
|
|
bun run build
|
|
bun --bun run build
|
|
```
|
|
|
|
### Redirect
|
|
|
|
```bash
|
|
bun install
|
|
bun run src/index.ts
|
|
```
|