app for refbot stuff
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

use refbot .env instead of local one

+2 -6
-4
.env.example
··· 1 - MONGODB_URI=mongodb://localhost:27017/refbot 2 - MONGODB_TEST_URI=mongodb://localhost:27017/refbot-test 3 - PORT=3001 4 - NODE_ENV=development
+1 -1
nodemon.json
··· 1 1 { 2 2 "watch": ["api"], 3 3 "ext": "js", 4 - "exec": "node --env-file=.env api/index.js" 4 + "exec": "node --env-file=../refbot/.env api/index.js" 5 5 }
+1 -1
package.json
··· 9 9 "dev:ui": "vite", 10 10 "build": "vite build", 11 11 "preview": "vite preview", 12 - "start": "node --env-file=.env api/index.js" 12 + "start": "node --env-file=../refbot/.env api/index.js" 13 13 }, 14 14 "dependencies": { 15 15 "cors": "^2.8.5",