You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I spent a few hours trying to run the jsonresume-theme-professional theme locally (via jsonresume-cli and resumed), with no success. Neither installing from npm nor copying the theme files and installing it locally worked. I get the following error when serving the resume locally after installing via npm install @jsonresume/jsonresume-theme-professional:
There was an error downloading your generated html resume from our server: Error: Method Not Allowed
Can someone guide on how this can be done?
The text was updated successfully, but these errors were encountered:
You have to install this theme relative to the folder to use it e.g. `npm install /Users/username/l/jsonresume/node_modules/jsonresume-theme-professional/index.js`
Ive been dealing with a similar problem, but I think I managed to figure it out.
First it might help to reset your environment: npm ls -g --depth=0 is what helped me figure out what is installed.
Now, I have two folders, I have my folder with my json and I have my folder which has a theme it it:
/src/resume-json/
/src/jsonresume-theme-macchiato
Try this?
cd /src/jsonresume-theme-macchiato
npm install
npm link
cd /src/resume-json/
npm link jsonresume-theme-macchiato
# try it?
resume export --resume resume.json --format pdf --theme macchiato public/resume.pdf
Now I can make changes to jsonresume-theme-macchiato and when I rebuild the resume my expected changes are shown.
I spent a few hours trying to run the jsonresume-theme-professional theme locally (via jsonresume-cli and resumed), with no success. Neither installing from npm nor copying the theme files and installing it locally worked. I get the following error when serving the resume locally after installing via
npm install @jsonresume/jsonresume-theme-professional
:Can someone guide on how this can be done?
The text was updated successfully, but these errors were encountered: