Welcome to the "I'm Pine Thank You" project repository!
This repository contains documentation and resources related to our project. Please refer to the following Wiki pages for detailed information:
The server is built using the Django framework with Python and is located inside the "backend" folder. To run the local Django server for testing, you will need the following:
- Python (version 3.7 or higher)
- An
.env
file (request from @hyungseok-choi if needed)
- Open a terminal in the root directory and run the following command to create a Python virtual environment named "venv" and install the required packages:
source ./setup_venv.sh
- Change the directory to the "backend" folder:
cd backend
- If you are running the server for the first time or there have been changes to the models, run the following commands to apply migrations:
python manage.py makemigrations python manage.py migrate
- Start the Django local server with the following command:
python manage.py runserver