Issues Setting up Learn Relational Databases by Building a Database of Video Game Characters - Build a Database of Video Game Characters

Tell us what’s happening:

Hi,
I’m trying to start the CodeRoad lesson “Build a Database of Video Game Characters” using Docker and VS Code. I already set the CODEROAD_WEBHOOK_TOKEN in the Dockerfile as instructed.

But when I build container, I get this error:
[15841 ms] rejected promise not handled within 1 second: SignatureVerificationFailed: Signature verification failed with ‘NotSigned’ error.

Has anyone knows how to fix it?
Thanks in advance!

Challenge Information:

Learn Relational Databases by Building a Database of Video Game Characters - Build a Database of Video Game Characters

the version that comes with the fCC repo fails to install. I modified it from 0.15.1 to 0.17.2 as that is the version that vs code will install if you try to do it yourself (install manually that is).

this is what I changed:

hbar1st@HanaaP:~/rdb-alpha/.devcontainer$ more devcontainer.json
{
  "name": "RDB Alpha",
  "dockerFile": "../Dockerfile",
  "workspaceFolder": "/workspace/project",
  "customizations": {
    "vscode": {
      "extensions": [
        "coderoad.coderoad@0.17.2"
      ]
    }
  }
}

(the line that has the coderoad extension)

2 Likes

are you sure version 0.17 will work? it was pinned to 0.15 for a specific reason maybe

yeah the problem is 0.15 doesn’t install (at least on some environments) so the only way to install coderoad is to move to a different version (and 0.17.2 at least will install and start the tutorial).

Have we heard anything from Tom about this?

1 Like

Thanks, I really appreciate your help. It’s working now

1 Like

thhhhank you
it was a problem for me to find code road cammand then i was dissappointed , thnks for your help

1 Like

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.