current_user=$(whoami); new_directory="/var"; cd "$new_directory"; sudo git clone https://github.com/instructure/canvas-lms.git canvas; sudo chown -R "$current_user":"$current_user" "$new_directory"/canvas; cd canvas; git checkout prod; for config in amazon_s3 database delayed_job...
Install Git which is used to download the Canvas files from their repository. Using Git also makes it easier to update your Canvas installation in the future. sudo apt install git-core Use Git to download the Canvas repository. git clone https://github.com/instructure/canvas-lms.git ~/canvas...
instructure_service? verified_token.client_id.to_s end private attr_reader :verified_token, :request def verified_token_for(request) return unless request.present? token_string = AuthenticationMethods.access_token(request, :GET) return unless token_string.present? AuthenticationMethods::InstAccessToken...