This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # actualizar el sistema completamente | |
| echo mejorar y actualizar el sistema | |
| sudo apt-get update | |
| sudo apt-get -y upgrade | |
| # instalar node.js para ejecutar comandos js al utilizar Rails | |
| echo instalando node.js para ejecutar JS y Git | |
| sudo apt-get install -y nodejs | |
| sudo apt-get install -y git |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class FIleUploadAPI | |
| { | |
| public IFormFile oneimage { get; set; } | |
| public String cellNumber { get; set; } | |
| public String otroCampo { get; set; } | |
| public String otroCampo2 { get; set; } | |
| } | |
| [Route("/api/v1/student/CAU/Ticket/new")] | |
| [HttpPost] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| source 'https://rubygems.org' | |
| git_source(:github) { |repo| "https://github.com/#{repo}.git" } | |
| ruby '2.5.8' | |
| # Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main' | |
| gem 'rails', '~> 6.1.4', '>= 6.1.4.1' | |
| # Use sqlite3 as the database for Active Record | |
| # gem 'sqlite3', '~> 1.4' | |
| # Use Puma as the app server |
OlderNewer