Home 126

포스트맨 설치하기 (API Platform)

포스트맨이란?API를 빌드하고 사용하기 위한 API 플랫폼, API를 더 빠르게 만들 수 있게 해준다다운로드하기https://www.postman.com/downloads/ Download Postman | Get Started for FreeTry Postman for free! Join 30 million developers who rely on Postman, the collaboration platform for API development. Create better APIs—faster.www.postman.com실행하기다운로드한 파일을 더블클릭한 후 실행하면 아래와 같은 화면이 표시되는데, 계정을 생성할 필요 없이 화살표로 표시한 부분(lightweight API client)을 클릭하면 됩니다.

Tools 2024.06.29

루비온레일즈에서 데이터베이스 다루기 (feat.Windows)

MySQL서버 설치 sudo apt install mysql-server sudo service mysql start sudo mysql_secure_installation mysql_secure_installation 더보기 Do you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) : Y By default, a MySQL installation has an anonymous user, allowing anyone to log into MySQL without having to have a user account created for them. This is intended only for te..

루비온레일즈 웹페이지만들기(feat.Windows)

컨트롤러생성 bundle exec rails generate controller home 생성되는 파일 및 폴더목록 더보기 app/controllers/home_controller.rb app/helpers/home_helper.rb app/views/home test/controllers/home_controller_test.rb 컨트롤러에 액션추가 app/controllers/home_controller.rb class HomeController < ApplicationController def index end end 뷰추가 app/views/home/index.erb Hello Rails~ 라우팅추가 config/routes.rb Rails.application.routes.draw do get ..

카테고리 없음 2022.05.29

루비온레일즈 개발환경구성하기 (feat.Windows)

Ubuntu설치(WSL) 1.설정 > 업데이트 및 보안 > 개발자용 > 개발자모드 선택 2.제어판 > 프로그램 > Windows 기능 켜기/끄기 > Linux용 Windows 하위 시스템 체크 > 재시작 3.Micorosft Store에서 Ubuntu 검색 > Ubuntu 20.04.4 LTS 다운로드 > 열기 > 계정생성 4.시작 > cmd > bash 의존환경설치 sudo apt-get update sudo apt-get install git-core curl zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev s..

레일즈로 40분 만에 유튜브 개발하기

$("#comments").html("") METUBE https://www.youtube.com/watch?v=QY69b33ui0c&t=12s 구현할 것 - 로그인/회원가입 - 부트스트랩/폰트어썸 - 비디오/썸네일 업로드 - 비디오 목록/보기, 작성자 수정/삭제 - 페이지네이션, 제목 검색 - 댓글 작성, 삭제 사용한 코드 % rails new metube % cd metube % atom . -- 서버시작 % rails s % rails db:create -- gemfile변경 % bundle % rails g devise:install % spring stop % rails g devise:install % rails g devise user % rails db:migrate ------------..