Skip to content

Assignments for "Principles and Practices of Software Development"

Notifications You must be signed in to change notification settings

lionminhu/swpp-assignments

Folders and files

NameName
Last commit message
Last commit date

Latest commit

author
Min Whoo Lee
Jun 4, 2019
f4d3c15 · Jun 4, 2019

History

2 Commits
 
 
 
 
 
 

Repository files navigation

"Principles and Practices of Software Development" Assignments

My solutions to the assignments for "M1522.002400 Principles and Practices of Software Development" course.

HW1: Backend for Meeting Appointment Site with Django Rest Framework

cd hw1
virtualenv env
source env/bin/activate
pip3 install django
pip3 install djangorestframework
pip3 install django-cors-headers

cd main
python3 manage.py makemigrations meetings
python3 manage.py migrate
python3 manage.py runserver
  • To deactivate, enter deactivate.
  • The site directory is as follows:
    • Meeting list: http://localhost:8000/meetings/
    • Details for individual meeting: http://localhost:8000/meetings/<id>, with <id> replaced by meeting ID
    • User list: http://localhost:8000/users/
    • Details for individual user: http://localhost:8000/users/<id>, with <id> replaced by user ID

HW2: Frontend for Meeting Appointment Site with React, Redux, and Redux-Saga

# Run backend
cd hw2/meetings_back/
virtualenv env
source env/bin/activate
pip3 install django
pip3 install djangorestframework
pip3 install django-cors-headers
cd main
python3 manage.py makemigrations meetings
python3 manage.py migrate
python3 manage.py runserver

# Run frontend
cd hw2/meetings_front/
npm install
npm start
  • The frontend site can be accessed at http://localhost:3000/.

About

Assignments for "Principles and Practices of Software Development"

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published