Elasticsearch frontend with advanced OSINT analytics capabilities including sentiment display, nickname/information tracing, live and scheduled rule creation with webhook endpoints. https://pathogen.is
Go to file
2025-01-23 11:35:39 +00:00
app Update Redis path to socket 2025-01-23 11:33:37 +00:00
core Port Manticore and debug 2025-01-23 11:35:39 +00:00
docker Port Manticore and debug 2025-01-23 11:35:39 +00:00
.gitignore Add static directory generated by collectstatic to ignore 2025-01-23 11:32:54 +00:00
.pre-commit-config.yaml Bump versions in pre-commit config 2023-02-09 07:20:35 +00:00
docker-compose.prod.yml Update to work with Podman 2025-01-23 11:32:13 +00:00
Dockerfile Update to work with Podman 2025-01-23 11:32:13 +00:00
Makefile Update to work with Podman 2025-01-23 11:32:13 +00:00
manage.py Run formatting 2022-07-21 13:45:13 +01:00
pyproject.toml Reformat and add blacklisted directories to DjHTML 2022-09-05 07:20:30 +01:00
README.md Fix typo in documentation 2022-07-21 13:47:52 +01:00
requirements.txt Update to run with Podman 2024-12-29 17:37:23 +00:00
stack.env Update to run with Podman 2024-12-29 17:37:23 +00:00

Neptune

Django app to handle to manage subscriptions to products using Stripe, and implementation of the products themselves.

Setting up the environment

Create the virtual environment, enable it, and install the dependencies.

$ python3 -m venv env
$ source env/bin/activate
(env) $ pip install -r requirements.txt

Local settings

You'll need to copy the app/local_settings.example.py file to app/local_settings.py. The project won't start otherwise.

$ cp app/local_settings.example.py app/local_settings.py

Running database migrations

Now we need to run the database migrations in order to get a working database.

(env) $ python manage.py migrate

Creating a superuser

In order to access Django admin, we need a superuser.

(env) $ python manage.py createsuperuser
Username: t2
Email address: t2@google.com
Password: 
Password (again): 
Superuser created successfully.

Running the server

(env) $ python manage.py runserver 8001
Starting development server at http://127.0.0.1:8001/
Quit the server with CONTROL-C.

As you've guessed, you can access it at http://127.0.0.1:8001/

Troubleshooting

Sometimes Django is difficult.

django.db.utils.OperationalError: no such table: core_user

This means you haven't yet run the migrations. See above.

Updating the models

If you make changes to the database models, you will need to create new migrations. Do this like so:

(env) $ python manage.py makemigrations

Afterwards, we can apply them as normal.

(env) $ python manage.py migrate