Welcome to My Django Social Network! This web application is built on the Django framework and offers a platform for social interaction and sharing. It includes features such as user authentication, post creation, and more.
- User registration and authentication
- User profile management
- Creating posts
- Subscription functionality
To get this project up and running on your local machine, follow these steps:
- Clone this repository:
git clone https://github.com/JuanCote/Socialnetwork.git
- Create a virtual environment:
python -m venv venv
- Activate the virtual environment:
- On macOS and Linux:
source venv/bin/activate
- On Windows:
venv\Scripts\activate
- On macOS and Linux:
- Install the project dependencies:
pip install -r requirements.txt
- Apply database migrations:
python manage.py migrate
- Start the development server:
python manage.py runserver