Skip to content

Commit b2dda8d

Browse files
committed
Add README.md
1 parent c1e82e1 commit b2dda8d

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Django Podcast Content Aggregator
2+
3+
> **Note:** The project is built with `Python 3.9.1`, but should work with any version of Python higher than 3.6.
4+
5+
## About This Repository
6+
7+
This is a companion project to the [Build a Content Aggregator in Python](https://realpython.com/build-a-content-aggregator-python/) tutorial on _Real Python_.
8+
Visit the article to follow along or download the content of `source_code_final` folder from this repository.
9+
10+
## How To Run The Project
11+
12+
Create and activate a [Python virtual environment](https://realpython.com/python-virtual-environments-a-primer/) for your operating system and install the dependencies:
13+
14+
```bash
15+
(.venv) $ python -m pip install -r <path_to_requirements.txt>
16+
```
17+
18+
You can find the `requirements.txt` file in `source_code_setup/requirements.txt`.
19+
20+
Navigate to `source_code_final/` and start the Django development server:
21+
22+
```bash
23+
(.venv) $ cd source_code_final
24+
(.venv) $ python manage.py runserver
25+
```
26+
27+
You can now navigate to `localhost:8000` in your browser and inspect the finished project. You can also take a look at the project at certain steps as described in the associated tutorial.

0 commit comments

Comments
 (0)