Skip to content
This repository has been archived by the owner on Nov 7, 2024. It is now read-only.

Update README.md with deprecation notice #15

Merged
merged 3 commits into from
Nov 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/cd-pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Build package
run: pipenv run python -m build
- name: Cache artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/
Expand All @@ -36,7 +36,7 @@ jobs:
id-token: write
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: dist
path: dist
Expand All @@ -52,7 +52,7 @@ jobs:
id-token: write
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: dist
path: dist
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ DjangoViz is a Django app that helps you visualize your models and their relatio

![alt text](https://entgo.io/images/assets/erd/edges-quick-summary.png)

> [!WARNING]
> ## Deprecation Notice
> This repository has been deprecated. Please refer to the [Atlas Django Provider](https://github.com/ariga/atlas-provider-django#inspect) documentation for up to date instructions.


## Installation

Expand Down Expand Up @@ -39,4 +43,4 @@ python manage.py djangoviz

This command will create a visual representation of your projects database schema using Atlas Cloud. You can now easily view and explore the relationships between your models.

**Note**: Ensure that your Django project is properly configured and connected to a database before running the `djangoviz` command.
**Note**: Ensure that your Django project is properly configured and connected to a database before running the `djangoviz` command.
Loading