Skip to content

Commit

Permalink
Merge pull request #36 from pheralb/next
Browse files Browse the repository at this point in the history
✨ Improve security, add block system
  • Loading branch information
pheralb authored Jan 11, 2025
2 parents e903c4b + b1c81da commit 1fed446
Show file tree
Hide file tree
Showing 23 changed files with 3,378 additions and 2,614 deletions.
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

0 comments on commit 1fed446

Please sign in to comment.