This is the WallPair project, a Django web application where user can upload two pictures as poll and other users can react on it via likes and comments.It also uses youtube api for youtube related posts
- Python 3.x
- pip (Python package installer)
-
Clone the repository:
git clone https://github.com/yourusername/wallpair.git
-
Navigate to the project directory:
cd wallpair -
Create a virtual environment (optional but recommended):
python3 -m venv venv
-
Activate the virtual environment:
- On Windows:
venv\Scripts\activate
- On macOS and Linux:
source venv/bin/activate -
Install the project dependencies:
pip install -r requirements.txt
-
Configure the settings:
- Copy the
example_settings.pyfile tosettings.py:
cp wallpair/settings/example_settings.py wallpair/settings/settings.py
- Modify
wallpair/settings/settings.pyas needed, adding your database, API keys, and other configuration.
- Copy the
-
Apply database migrations:
python manage.py migrate
-
Run the development server:
python manage.py runserver
-
Access the application in your web browser at
http://127.0.0.1:8000/.
If you'd like to contribute to this project, feel free to fork the repository and create a pull request.