The problem you’re having with creating that project is that the project name doesn’t match the regex ^[A-Za-z0-9][A-Za-z0-9_-]{0,63}$
. I.e., it has to be alphanumeric, hyphens, or underscores, and no more than 63 characters long.
The problem you’re having with creating that project is that the project name doesn’t match the regex ^[A-Za-z0-9][A-Za-z0-9_-]{0,63}$
. I.e., it has to be alphanumeric, hyphens, or underscores, and no more than 63 characters long.