add NFT minting (frontend + Pinata/IPFS backend)

This commit is contained in:
Sara Jane (SJ)
2026-01-09 22:24:46 +00:00
parent 6aacc68cdc
commit 660dc742ad
8 changed files with 2232 additions and 161 deletions

View File

@ -0,0 +1,7 @@
import app from './app.js'
const port = process.env.PORT || 3001
app.listen(port, '0.0.0.0', () => {
console.log(`✅ Backend listening at http://localhost:${port}`)
})