swpp201901-team06 / swpp-project

1 stars 2 forks source link

FooDa: 지나간 추억을 다이어리 속 음식과 함께 푸다

Description

Installation

Initial installation steps are as follows:

# Setup and activate virtual environment
sudo apt install virtualenv
virtualenv env
source ./env/bin/activate

# Install Python libraries
sudo pip3 install -r requirements.txt

# Setup backend
cd FD_backend
python3 manage.py makemigrations
python3 manage.py migrate

# Setup frontend
sudo apt install npm
cd ../FD_frontend
npm install
npm install --save google-map-react

In order to run the backend server, follow these steps:

cd FD_backend # from repo root
python3 manage.py runserver

The frontend server can be run as following:

cd FD_frontend # from repo root
npm start

Progress Reports