Skip to content
Discussion options

You must be logged in to vote

Resolved..

You need to write all files to the manifest like:

rsconnect write-manifest quarto \
  --overwrite \
  template.qmd \
  _extensions/my-extension/_extension.yml \
  _extensions/my-extension/template.html \
  _extensions/my-extension/styles.css \
  _extensions/my-extension/template.tex

note: UV would not work no matter what I tried, so I had to export the uv.lock to requirements.txt:

uv export \
  --locked \
  --format requirements.txt \
  --no-hashes \
  --output-file requirements.txt

then run

rsconnect deploy manifest manifest.json 

That failed for me with this error:

[ERROR]: 'utf-8' codec can't decode byte 0x80 in positon 10: invalid start byte

I fixed it with --no-verify

rsco…

Replies: 2 comments 3 replies

Comment options

You must be logged in to vote
1 reply
@DOH-FAA3303
Comment options

Comment options

You must be logged in to vote
2 replies
@mcanouil
Comment options

@DOH-FAA3303
Comment options

Answer selected by DOH-FAA3303
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment