team-9/README.md

29 lines
375 B
Markdown
Raw Normal View History

2025-08-01 23:41:32 +02:00
# Template per Hackathon
2025-08-01 15:32:00 +00:00
2025-08-01 23:41:32 +02:00
## 🚀 Avvio Rapido
```bash
2025-08-02 02:22:12 +02:00
#Lancia frontend produzione
npm i -g @ionic/cli
npm i
ionic serve
#Url server hostato su ngrok
https://fbbb261497e3.ngrok-free.app
# Lancia frontend di testing
apri testing/index.html
```
2025-08-01 23:41:32 +02:00
2025-08-02 02:24:46 +02:00
```bash
2025-08-01 23:41:32 +02:00
#Comandi utili per vedere dati db su mongosh
mongosh
show dbs
use simple_db
show collections
db.items.find()
2025-08-02 02:24:46 +02:00
2025-08-01 23:41:32 +02:00
```