Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- eulerAngles
- c++ 문자열 자르기
- 이진트리
- ML-Agents
- 유니티 Collision
- 깊이 우선 탐색
- 유니티 Rotate
- Raycast
- unity
- 유니티 ResourceManager
- 소스코드 줄번호
- 유니티 머신러닝
- git-lfs
- 유니티 InputManager
- 유니티 Vector3
- LookRotation
- 유니티 리소스매니저
- 유니티
- LFS
- 알고스팟
- c++
- 오브젝트 풀링
- Quaternion.Euler
- 코드블럭 테마
- InputManager
- 너비 우선 탐색
- LayerMask
- 유니티 시야 가림
- Mathf.Clamp
- 유니티 오브젝트 풀링
Archives
- Today
- Total
무민은귀여워
Rails API + Nuxt.js + Devise-JWT #1 본문
반응형
참고 : https://mgleon08.github.io/blog/2018/07/17/rails-nuxt-jwt/
-> 화면은 nuxt.js 로, 서버단은 rails api 를 이용하는 예제
Part 1: Creating a development environment
※ 이미 rails와 vue CLIs, docker 등이 설치되어 있다는 가정 하에 진행한다.
이 코스는 물론 Docker images 를 이용한 진행도 가능하다.
먼저 다음 명령어들 실행.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | # backend mkdir autheg cd autheg rails new autheg-backend -T --skip-spring -C -B -d postgresql --api # -T = skip test # -C = skip action cable # -B = skip bundle # --api = API server # test, action cable, bundle 등을 스킵하는 이유는, 이것들을 나중에 Docker에서 돌리기 위함이다. #frontend vue init nuxt-community/starter-template autheg-frontend cd autheg-frontend yarn generate-lock-entry > yarn.lock # 마찬가지로 패키지 설치 없이 yarn.lock 파일 생성을 위함 | cs |
아래 파일들을 생성.
Backend
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # autheg/autheg-backend/Dockerfile FROM ruby:2.5 ARG UID RUN adduser rails --uid $UID --disabled-password --gecos "" ENV APP /usr/src/app RUN mkdir $APP WORKDIR $APP COPY Gemfile* $APP/ RUN bundle install -j3 --path vendor/bundle # Gems and yarn packages are installed into the mounted volumes. # This will stop you from needing to rebuild the whole Docker image every time you change the Gemfile or package.json. COPY . $APP/ CMD ["bin/rails", "server", "-p", "8080", "-b", "0.0.0.0"] # 원본 사이트에는 "rails"로 되어 있지만 에러가 발생하므로, "bin/rails"로 변경한다. | cs |
1 2 3 4 | # autheg/autheg-backend/.dockerignore /vendor/bundle /log /tmp | cs |
1 2 | # autheg/autheg-backend/.gitignore /vendor/bundle/ | cs |
Frontend
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # autheg/autheg-frontend/Dockerfile FROM node:9 ARG UID RUN adduser frontend --uid $UID --disabled-password --gecos "" ENV APP /usr/src/app RUN mkdir $APP WORKDIR $APP COPY package.json yarn.lock $APP/ RUN yarn # Gems and yarn packages are installed into the mounted volumes. # This will stop you from needing to rebuild the whole Docker image every time you change the Gemfile or package.json. COPY . $APP/ CMD ["yarn", "run", "dev"] | cs |
1 2 | # autheg/autheg-frontend/.dockerignore /node_modules/ | cs |
ALL
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | # autheg/docker-compose.yml version: '3' # dockerfile services: db: # rails database.yml host image: postgres ports: - "5432" backend: # REPOSITORY name autheg_backend build: context: autheg-backend args: UID: ${UID:-1001} volumes: - ./autheg-backend:/usr/src/app ports: - "8080:8080" depends_on: - db user: rails #adduser frontend: # REPOSITORY name autheg_frontend build: context: autheg-frontend args: UID: ${UID:-1001} volumes: - ./autheg-frontend:/usr/src/app ports: - "3000:3000" user: frontend # adduser | cs |
다음 명령어 실행
1 | docker-compose build | cs |
(참고 : # docker images)
1 | docker-compose run -u root backend bundle | cs |
(참고 : # docker ps -a)
1 | docker-compose run frontend yarn | cs |
(참고 :# docker ps -a)
autheg-backend/config/database.yml 파일 편집
1 2 3 4 5 | default: &default adapter: postgresql encoding: unicode host: db # 추가 username: postgres # 추가 | cs |
autheg-frontend/package.json 파일 편집
1 2 3 4 5 6 | "private": true, "scripts": { "dev": "HOST=0.0.0.0 nuxt", # "build": "nuxt build", "start": "nuxt start", "generate": "nuxt generate", | cs |
HOST=0.0.0.0 nuxt
so it’s visible on your host machine다음 명령어로, development database 생성
1 | docker-compose run backend bin/rails db:create | cs |
(참고)
1 2 3 | docker exec -it autheg_db_1 bash su - postgres psql -ls | cs |
컨테이너 기동
1 2 3 | docker-compose up # docker-compose stop # docker-compose down | cs |
rails : http://localhost:8080/
nuxt : http://localhost:3000/
이제 로컬 주소로 레일즈와 nuxt 기본 화면을 확인 할 수 있음.
(이때 nuxt 에서 에러가 나올 수도... 다른 게시글의 메모 참조...)
반응형
'IT > 각종 강좌들 ~ ' 카테고리의 다른 글
Rails API + Nuxt.js + Devise-JWT #2 (0) | 2018.10.08 |
---|
Comments