Skip to content
This repository was archived by the owner on May 1, 2025. It is now read-only.

SNU-SWPP22-TA/swpp-p10-deploy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

SWPP Practice Session #10

  • Connected frontend and backend
  • Deploy

Docker

docker pull snuspl/swpp:practice8

docker run --rm -it \
    --ipc=host \
    --name "practice10" \
    -p 0.0.0.0:3000:3000 -p 0.0.0.0:8000:8000 \
    -v ${PWD}:/home \
    snuspl/swpp:practice8 \
    /bin/bash

Frontend

cd frontend
yarn
yarn start

Backend

cd backend
python manage.py makemigrations
python manage.py migrate
python manage.py runserver 0.0.0.0:8000

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors