Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✨ Improve security, add block system #36

Merged
merged 19 commits into from
Jan 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
# database
/prisma/db.sqlite
/prisma/db.sqlite-journal
dump.sql

# next.js
/.next/
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
<div align="center">
<a href="https://slug.vercel.app">
<img
src="/public/images/banner.png"
src="https://raw.githubusercontent.com/pheralb/slug/refs/heads/main/public/images/logo_svg.svg"
alt="Slug Logo"
height="64"
/>
</a>
<p></p>
<p>
<b>
An open-source URL shortener built with T3 Stack.
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"name": "@pheralb/slug",
"version": "3.1.0",
"version": "3.2.0",
"author": "@pheralb_",
"description": "A URL shortener built with T3 Stack",
"private": true,
"license": "GPL-3.0-only",
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"build": "next build",
"dev": "next dev",
Expand All @@ -16,9 +17,9 @@
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev --name init",
"db:studio": "prisma studio",
"db:push": "turso db shell slug < ./prisma/migrations/20240404040238_init/migration.sql",
"db:push": "turso db shell slug < ./prisma/migrations/<migration_id>_init/migration.sql --location=<location>",
"db:pscale:dump": "pscale database dump databasename databasebranch",
"db:turso:dump": "turso db shell slug .dump > dump.sql"
"db:turso:dump": "turso db shell <database> .dump > dump.sql --location=<location>"
},
"dependencies": {
"@auth/core": "0.30.0",
Expand Down Expand Up @@ -81,6 +82,5 @@
},
"ct3aMetadata": {
"initVersion": "7.25.0"
},
"packageManager": "[email protected]"
}
}
Loading
Loading