Initial random app template with Nixpacks

This commit is contained in:
Kerboul
2026-03-13 01:39:57 -07:00
commit 3bc49c37b4
6 changed files with 920 additions and 0 deletions

13
package.json Normal file
View File

@@ -0,0 +1,13 @@
{
"name": "exp-random-app",
"version": "1.0.0",
"private": true,
"description": "Random template app deployable with Coolify/Nixpacks",
"main": "server.js",
"scripts": {
"start": "node server.js"
},
"dependencies": {
"express": "^4.21.2"
}
}