eclipsesource / tabris-js

Create native mobile apps in JavaScript or TypeScript.
https://tabrisjs.com
BSD 3-Clause "New" or "Revised" License
1.4k stars 172 forks source link

Error: Email Required #2247

Open CauaSantosCoder opened 1 year ago

CauaSantosCoder commented 1 year ago

Question

how to get around this error, does it count after i choose any model when i do tabris init error

cookieguru commented 1 year ago

The email is used to fill out the author section of the generated config.xml.

Normally the email is pulled from git (git config --list) but it should prompt you if it cannot parse an email from that config. Was there a prompt that you did not fill out? If so try running tabris init again without skipping that prompt. Otherwise please open an issue in generator-tabris-js

jhay06 commented 1 year ago

i have this error with the latest tabris @3.9.0

but i managed to fixed it , since it has the module of github-username . the first thing i thought is that the console is looking for our github credentials stored in our device

to fix :

git config --global user.name "your username" git config --global user.email "github emailaddress"

then run again the tabris init and volla the app template wil lbe created .

cookieguru commented 1 year ago

This should be fixed via https://github.com/eclipsesource/generator-tabris-js/commit/1ecc3fad962b443b0999145b39f8e4b5172adff8

Updating the CLI to 3.9.1 or newer with npm install tabris-cli@latest -g should resolve the error