https://github.com/ryu22e/django_auditlog_example
Example for django-auditlog
https://github.com/ryu22e/django_auditlog_example
django django-auditlog example python
Last synced: 11 months ago
JSON representation
Example for django-auditlog
- Host: GitHub
- URL: https://github.com/ryu22e/django_auditlog_example
- Owner: ryu22e
- License: mit
- Created: 2024-03-12T11:58:57.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-17T08:22:14.000Z (almost 2 years ago)
- Last Synced: 2025-01-27T05:54:52.657Z (about 1 year ago)
- Topics: django, django-auditlog, example, python
- Language: Python
- Homepage:
- Size: 36.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# django_auditlog_example
Example for django-auditlog
## Requirements
- Git
- Python 3.12 or [rye](https://rye-up.com/)
## Setup
### For Python 3.12
```bash
$ git clone git@github.com:ryu22e/django_auditlog_example.git
$ cd django_auditlog_example
$ python3.12 -m venv .venv
$ source .venv/bin/activate
$ pip install -r requirements-dev.lock
$ python manage.py migrate
$ python manage.py createsuperuser
$ python manage.py runserver # Open http://localhost:8000/ in your browser
```
### For rye
```bash
$ git clone git@github.com:ryu22e/django_auditlog_example.git
$ cd django_auditlog_example
$ rye sync
$ source .venv/bin/activate
$ python manage.py migrate
$ python manage.py createsuperuser
$ python manage.py runserver
$ python manage.py runserver # Open http://localhost:8000/ in your browser
```