Server: add pod created date and score to the list controller
[oweals/peertube.git] / scripts / danger / clean / server.sh
1 #!/bin/bash
2
3 read -p "This will remove certs, uploads, database (dev) and logs. Are you sure? " -n 1 -r
4
5 if [[ "$REPLY" =~ ^[Yy]$ ]]; then
6   rm -rf ./certs ./logs ./uploads
7   printf "use peertube-dev;\ndb.dropDatabase();" | mongo
8 fi