I was trying to change the name of my experiment in the home page of nodeGame. I tried adding a "card" property to my package.json. However, it seems the game is now looking for the game under a folder named in the card property.
{
"name": "Personalized_Phishing_Training_random_v1",
"version": "0.0.1",
"description": "A multi-player phishing training simulator game",
"license": "MIT/X11",
"dependencies": {
"csv-stringify": "^6.3.0"
},
"card": {
"name": "Phishing\nTraining\nSimulator"
}
}
The game is in ./games_available/Personalized_Phishing_Training_random_v1
The name of the game is what I want on the home page of nodeGame, "Phishing Training Simulator". But when I click on the game to start it, I get the error:
Cannot GET /PhishingTrainingSimulator
How do I change the name of the game on the home page, without having to change my directory name?
Thanks,
Drew