├── .gitignore ├── R ├── database_functions.R ├── poll.R └── read_results.R ├── README.md ├── global.R ├── polling.Rproj ├── server.R └── ui.R /.gitignore: -------------------------------------------------------------------------------- 1 | .Renviron 2 | -------------------------------------------------------------------------------- /R/database_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyquinterom/Shiny-Async-Poll/HEAD/R/database_functions.R -------------------------------------------------------------------------------- /R/poll.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyquinterom/Shiny-Async-Poll/HEAD/R/poll.R -------------------------------------------------------------------------------- /R/read_results.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyquinterom/Shiny-Async-Poll/HEAD/R/read_results.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyquinterom/Shiny-Async-Poll/HEAD/README.md -------------------------------------------------------------------------------- /global.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyquinterom/Shiny-Async-Poll/HEAD/global.R -------------------------------------------------------------------------------- /polling.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyquinterom/Shiny-Async-Poll/HEAD/polling.Rproj -------------------------------------------------------------------------------- /server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyquinterom/Shiny-Async-Poll/HEAD/server.R -------------------------------------------------------------------------------- /ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyquinterom/Shiny-Async-Poll/HEAD/ui.R --------------------------------------------------------------------------------