Scrape, extract, translate, summarize and send news right to your inbox. The initial goal is to help you stay updated with the latest AI news in Japan, including those that are only in Japanese.
License: MIT
This project started as an experiment by @mariomeissner. It is built almost in its entirety by Cursor, the AI powered code editor. Almost no code was edited manually in the process.
Feel free to self-host this project if you want to use it yourself, a hosted version is not available at this moment.
Moved to settings.
This project was created with cookiecutter-django. Visit the cookiecutter-django documentation for more information.
Install uv
by following the instructions here.
We are currently using Python version 3.12. Install it via your favorite approach, e.g. homebrew, pyenv, or uv. Make sure uv recognizes and picks up that version. See more details here.
Then, you can set up your virtual environment by running:
uv sync --all-extras
This will create a virtual environment in .venv
and install all the dependencies.
Activate the virtual environment by running:
source .venv/bin/activate
Or run your python commands with uv run
:
uv run python manage.py <command>
Install the pre-commit hooks by running (with activated environment, or with uv run
):
pre-commit install
Make sure they run and pass by running:
pre-commit run --all
On macOS, you can install Postgres using Homebrew. We are using version 16:
brew install postgresql@16
Then, start the server:
brew services start postgresql@16
You might need to add the following to your .zshrc
or .bashrc
:
export PATH="/opt/homebrew/opt/postgresql@16/bin:$PATH"
Generate a secure password for the postgres
user:
openssl rand -hex 16
Create a superuser called postgres
:
createuser -P -s postgres
Confirm that you can connect to the database:
psql postgres
(Ctrl-D to exit)
Create the database:
createdb --username=postgres news_aggregator
Create a .env
file:
cp .envs.example .env
Replace the password with the one you generated earlier.
Finally, run the initial migrations:
uv run python manage.py migrate
Verify that you can run the development server:
uv run python manage.py runserver
And access the site via http://localhost:8000/.
-
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.
Running type checks with mypy:
$ mypy news_aggregator
To run the tests, check your test coverage, and generate an HTML coverage report:
$ coverage run -m pytest
$ coverage html
$ open htmlcov/index.html
$ pytest
Moved to Live reloading and SASS compilation.
This app comes with Celery.
To run a celery worker:
cd news_aggregator
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, you'll need to start the celery beat scheduler service. You can start it as a standalone process:
cd news_aggregator
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):
cd news_aggregator
celery -A config.celery_app worker -B -l info
In development, it is often nice to be able to see emails that are being sent from your application. If you choose to use Mailpit when generating the project a local SMTP server with a web interface will be available.
-
Download the latest Mailpit release for your OS.
-
Copy the binary file to the project root.
-
Make it executable:
$ chmod +x mailpit
-
Spin up another terminal window and start it there:
./mailpit
-
Check out http://127.0.0.1:8025/ to see how it goes.
Now you have your own mail server running locally, ready to receive whatever you send it.
Sentry is an error logging aggregator service. You can sign up for a free account at https://sentry.io/signup/?code=cookiecutter or download and host it yourself. The system is set up with reasonable defaults, including 404 logging and integration with the WSGI application.
You must set the DSN url in production.
The following details how to deploy this application.
See detailed cookiecutter-django Heroku documentation.