Application Failed to Start

I have the following error when I tried to deploy my app:
Attaching package: ‘DT’

The following objects are masked from ‘package:shiny’:

dataTableOutput, renderDataTable

── Attaching packages ─────────────────────────────────────── tidyverse 1.2.1 ──
:heavy_check_mark: tibble 2.0.1 :heavy_check_mark: purrr 0.3.1
:heavy_check_mark: tidyr 0.8.3 :heavy_check_mark: dplyr 0.8.0.1
:heavy_check_mark: readr 1.3.1 :heavy_check_mark: stringr 1.4.0
:heavy_check_mark: tibble 2.0.1 :heavy_check_mark: forcats 0.4.0
── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
:heavy_multiplication_x: dplyr::filter() masks stats::filter()
:heavy_multiplication_x: dplyr::lag() masks stats::lag()
Warning in file(con, "r") :
cannot open file 'wnba_stats_2018.json': No such file or directory
Error in value[3L] : cannot open the connection
Calls: local ... tryCatch -> tryCatchList -> tryCatchOne ->
Execution halted

I've seen other posts about this issue with loaded packages but can't really understand how to solve my problem.

Is anyone knowledgable about the topic and can help this Shiny newbie out please? :slight_smile:

Thanks in advance!!

The problem has to do with reading 'wnba_stats_2018.json':

cannot open file 'wnba_stats_2018.json': No such file or directory

Is that file located somewhere in the application directory (if not, try putting it under that directory)?

Hey thanks for responding. I should have taken this down because I figured it out shortly after. You were right. I hadn't added a global.r file so none of my datasets were loading.

This topic was automatically closed 54 days after the last reply. New replies are no longer allowed.