When I try to deploy my app into shinyapp.io I have this error :
Error: Unhandled Exception: Child Task 547847631 failed: Error parsing manifest: Bundle does not contain manifest file: données.xlsx
Looks like it can't access to my file donnees.xlsx which is where I read my data for my App.
Here is how I import my data (which works perfectly localy)
The error means that your file is not in the bundle or can't be reached. In fact, if you're code for reading xlsx is the one you posted, it should not work. You need to use relative path. Put the file inside you project. Your current path C:/Users/Baillargeon/Desktop/R_PROG/RShiny_test/data/données.xlsx can't be found on the server because it does not exist!
You can use the here to help you with file paths inside projects.
Here is great in rstudio project as it helps build path. For shiny apps to deploy, you generally have a more somple organisation. The data folder should be at the root of you app directory, and the relative path should be enough.
In fact it is possible that here is not well adapt to shiny apps deploy in shinyapps.io. Or at least, check the discovery logic of here as you may need a .here file in the root directory to help find the path.
Also when deploying you need to check that the file is included in the published bundle. You should see that in the IDE when deploying or in the bundle manifest that you should find on the website dashboard. Check that the xlsx file is there.
If your question's been answered, would you mind choosing a solution? It helps other people see which questions still need help, or find solutions if they have similar problems. Here’s how to do it: