We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The current code in file config.ts is to check if the file exist and otherwise to create a minimal file from the template:
config.ts
export let config: configType; if (!fs.existsSync(configPath)) { console.log("No config file detected"); console.log("Creating new config..."); fs.copyFileSync(__dirname + "/../utils/config.template.json", configPath, fs.constants.COPYFILE_EXCL); }
Alternative to explore:
github-user/gh-edu-profile
config.json
gh-edu-profile
It is a lot of work
The text was updated successfully, but these errors were encountered:
b8aa608
update
Sorry, something went wrong.
crguezl
No branches or pull requests
Improvement to keep the configuration file in a separated user repo
The current code in file
config.ts
is to check if the file exist and otherwise to create a minimal file from the template:Alternative to explore:
github-user/gh-edu-profile
in GitHub and if soconfig.json
from there by cloning the repo,gh-edu-profile
in the extension foldergh-edu-profile
github-user/gh-edu-profile
and push the config fileIt is a lot of work
The text was updated successfully, but these errors were encountered: