Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,13 @@ py/__pycache__
static_files/
../env1
logs.log

# Google OAuth tokens
.secrets/
google-service-account*.json
<<<<<<< HEAD
venv/
=======
static_files/*
!static_files/labelling_file.xlsx
>>>>>>> f7f1675 (Add labelling file)
.secrets
Binary file added WWW/manuals/user_manual.pdf
Binary file not shown.
5 changes: 5 additions & 0 deletions server.R
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ function(input, output, session){

source("server/auth.R")
source("server/homepage_translation_labels.R", local = TRUE)
source("server/google_sheets_feedback.R", local = TRUE)
source("server/feedback_form_server.R", local = TRUE)

register_homepage_labels(output, session, get_rv_labels)

USER = user_auth(input, output, session)
Expand Down Expand Up @@ -68,6 +71,8 @@ function(input, output, session){
source("server/history_visualize_auto_actions.R", local = TRUE)
source("server/history_visualize_custom_actions.R", local = TRUE)

add_resources_translation(output, session)
feedback_form_server(input, output, session, USER)
api_base <- reactive({
val <- input$fastapi_base
if (is.null(val) || !nzchar(trimws(val))) {
Expand Down
Loading