Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
f1e93ef
Create db.silvernote.ts
MisterPapaye Jan 29, 2026
1c24236
Update api.share.ts
MisterPapaye Jan 29, 2026
b6d69e4
Create resources.ts
MisterPapaye Jan 29, 2026
f25b136
add users length on resources
MisterPapaye Jan 29, 2026
f302cd9
add LICENSE + update resources routes
MisterPapaye Jan 30, 2026
b9f6c79
Create .env.example
MisterPapaye Feb 4, 2026
a5831ec
Create scrypto.ts
MisterPapaye Feb 4, 2026
248752c
implément scrypto to note class
MisterPapaye Feb 4, 2026
88e9b99
add fingerprint and update scrypto
MisterPapaye Feb 4, 2026
9bee342
create /news route
MisterPapaye Feb 4, 2026
4d6d93e
Create news.ts
MisterPapaye Feb 4, 2026
413df23
Create news.json
MisterPapaye Feb 4, 2026
6b745ea
Create notifications.ts
MisterPapaye Feb 4, 2026
e0a11f0
clean
MisterPapaye Feb 4, 2026
ccd7d6f
Merge pull request #11 from SilverCore-Git/feature/note-crypt
MisterPapaye Feb 4, 2026
47e3da3
add notifications route
MisterPapaye Feb 4, 2026
0750e8b
Create api.notifications.ts
MisterPapaye Feb 4, 2026
e65ce4b
mouve notifications
MisterPapaye Feb 4, 2026
0991a2a
secured routes
MisterPapaye Feb 4, 2026
933e012
Update api.notifications.ts
MisterPapaye Feb 4, 2026
21d3e8e
Update news.ts
MisterPapaye Feb 4, 2026
3b31b9c
Update notifications.ts
MisterPapaye Feb 4, 2026
edbdadd
Delete news.json
MisterPapaye Feb 4, 2026
dbbe395
mouve news routes to /api/notifications
MisterPapaye Feb 4, 2026
d05b61b
Update express.ts
MisterPapaye Feb 4, 2026
af3125d
add android token support
MisterPapaye Feb 5, 2026
a659101
create 2048 api
MisterPapaye Feb 5, 2026
9ac86ef
Create 2048_db.ts
MisterPapaye Feb 5, 2026
ecd2627
Update api.2048.ts
MisterPapaye Feb 5, 2026
c596003
Update api.2048.ts
MisterPapaye Feb 5, 2026
da6299f
fix 2048 api
MisterPapaye Feb 5, 2026
41b4a2e
Create userDB.ts
MisterPapaye Feb 6, 2026
b8ce33c
sync with new db
MisterPapaye Feb 6, 2026
b289b86
Update api.db.ts
MisterPapaye Feb 6, 2026
3203f48
get user id with clerk auth
MisterPapaye Feb 6, 2026
ab0e213
add get pinned notes
MisterPapaye Feb 6, 2026
fc72e7c
add noPinnned
MisterPapaye Feb 6, 2026
a51c13e
get user id by clerk auth for share
MisterPapaye Feb 6, 2026
a224378
fix
MisterPapaye Feb 6, 2026
f78621e
Update ws.ts
MisterPapaye Feb 6, 2026
c1f5c77
pass to db v2
MisterPapaye Feb 7, 2026
26eca06
Update notes.ts
MisterPapaye Feb 8, 2026
0e53fb5
Update notes.ts
MisterPapaye Feb 10, 2026
066fa19
Update jeremy_ai.json
MisterPapaye Feb 10, 2026
71c5e8a
add build with swc compiler
MisterPapaye Feb 10, 2026
524ef2a
Merge pull request #12 from SilverCore-Git/optimis/db-stram
MisterPapaye Feb 12, 2026
256751f
Update package-lock.json
MisterPapaye Feb 12, 2026
1d80bc8
fix build
MisterPapaye Feb 12, 2026
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
24 changes: 24 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
COOKIE_SIGN_KEY=key
JWT_SIGN_KEY=key
secret_token_key=key
DB_ENCRYPTION_KEY=key

DB_API_SK_1=key
DB_API_SK_2=key

secret_admin_api_key=key
SECRET_AI_API_KEY=key
MOBILE_SECRET_KEY=key

STRIPE_SECRET_KEY=key
STRIPE_WEBHOOK_SECRET=key

OPENAI_SECRET_KEY=sk-proj-key
GOOGLE_API_KEY=key

CLERK_PUBLISHABLE_KEY=key
CLERK_SECRET_KEY=key

MCP_SERVER_PATH=./src/mcp-server/index.js

CRONITOR_API_KEY=key
21 changes: 21 additions & 0 deletions .swcrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"jsc": {
"parser": {
"syntax": "typescript",
"tsx": false,
"decorators": true
},
"target": "es2022",
"loose": false,
"externalHelpers": true,
"minify": {
"compress": true,
"mangle": true
}
},
"module": {
"type": "es6"
},
"minify": true,
"sourceMaps": true
}
13 changes: 13 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Copyright © 2026 Silvercore

Tous droits réservés / All Rights Reserved

Le code source de ce projet est rendu public uniquement à des fins
de transparence. Aucune licence d'utilisation, de modification, de
distribution ou de reproduction n'est accordée.

This source code is made publicly available for transparency purposes
only. No license to use, modify, distribute, or reproduce is granted.

Toute utilisation non autorisée de ce code est strictement interdite.
Unauthorized use of this code is strictly prohibited.
Loading