https://github.com/abe-101/podsync
PodSync is a Django dashboard for content creators to track their YouTube videos converted into podcasts, using the YouTube API and RSS feeds. Simplify podcast content management with PodSync
https://github.com/abe-101/podsync
Last synced: 4 months ago
JSON representation
PodSync is a Django dashboard for content creators to track their YouTube videos converted into podcasts, using the YouTube API and RSS feeds. Simplify podcast content management with PodSync
- Host: GitHub
- URL: https://github.com/abe-101/podsync
- Owner: abe-101
- License: mit
- Created: 2023-04-14T18:57:10.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-30T04:01:52.000Z (almost 3 years ago)
- Last Synced: 2025-09-11T19:52:56.460Z (9 months ago)
- Language: Python
- Size: 65.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PodSync
PodSync is a Django dashboard for content creators to track their YouTube videos converted into podcasts, using the YouTube API and RSS feeds. Simplify podcast content management with PodSync
[](https://github.com/cookiecutter/cookiecutter-django/)
[](https://github.com/ambv/black)
License: MIT
## Settings
Moved to [settings](http://cookiecutter-django.readthedocs.io/en/latest/settings.html).
## Basic Commands
### Setting Up Your Users
- To create a **normal user account**, just go to Sign Up and fill out the form. Once you submit it, you'll see a "Verify Your E-mail Address" page. Go to your console to see a simulated email verification message. Copy the link into your browser. Now the user's email should be verified and ready to go.
- To create a **superuser account**, use this command:
$ python manage.py createsuperuser
For convenience, you can keep your normal user logged in on Chrome and your superuser logged in on Firefox (or similar), so that you can see how the site behaves for both kinds of users.
### Type checks
Running type checks with mypy:
$ mypy podsync
### Test coverage
To run the tests, check your test coverage, and generate an HTML coverage report:
$ coverage run -m pytest
$ coverage html
$ open htmlcov/index.html
#### Running tests with pytest
$ pytest
### Live reloading and Sass CSS compilation
Moved to [Live reloading and SASS compilation](https://cookiecutter-django.readthedocs.io/en/latest/developing-locally.html#sass-compilation-live-reloading).
### Celery
This app comes with Celery.
To run a celery worker:
```bash
cd podsync
celery -A config.celery_app worker -l info
```
Please note: For Celery's import magic to work, it is important _where_ the celery commands are run. If you are in the same folder with _manage.py_, you should be right.
To run [periodic tasks](https://docs.celeryq.dev/en/stable/userguide/periodic-tasks.html), you'll need to start the celery beat scheduler service. You can start it as a standalone process:
```bash
cd podsync
celery -A config.celery_app beat
```
or you can embed the beat service inside a worker with the `-B` option (not recommended for production use):
```bash
cd podsync
celery -A config.celery_app worker -B -l info
```
## Deployment
The following details how to deploy this application.