initiate monorepo, add original github-trends

This commit is contained in:
martin-mfg
2025-09-18 11:30:25 +02:00
parent a2c24199b0
commit d149e0e1f5
417 changed files with 26614 additions and 11 deletions
+10
View File
@@ -0,0 +1,10 @@
import os
file = open('./vercel.json', 'r')
str = file.read()
file = open('./vercel.json', 'w')
str = str.replace('"maxDuration": 10', '"maxDuration": 15')
file.write(str)
file.close()