Skip to content

Commit 39d8c0a

Browse files
committed
updated readme and gitactions
1 parent 3275dc4 commit 39d8c0a

File tree

5 files changed

+21
-21
lines changed

5 files changed

+21
-21
lines changed

Readme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
a django cookiecutter rest framework /drf cookiecutter template for bootstrapping `headless` **Django** with minimal efforts and ensuring the best practices followed in at the very beginning,
55

6-
[![Sanity Check](https://github.com/n0tNoah/django-cookiecutter-rest/actions/workflows/sanitycheck.yml/badge.svg)](https://github.com/n0tNoah/django-cookiecutter-rest/actions/workflows/sanitycheck.yml)
6+
[![Sanity Check](https://github.com/vi6hal/django-cookiecutter-rest/actions/workflows/sanitycheck.yml/badge.svg)](https://github.com/vi6hal/django-cookiecutter-rest/actions/workflows/sanitycheck.yml)
77
# Sample Implementation
8-
[Experement-Thirty-3](https://github.com/n0tNoah/experment-thirty3)
8+
[Experement-Thirty-3](https://github.com/vi6hal/experment-thirty3)
99

1010
## Features
1111
This template does not force you to integrate `boto3`,`postgres`,`docker` or any other dependancy / practices, but rather focuses on the important and crucial things,at the same time giving you options to branch out in directions with the boilerplate,it let's you deicde your pizza toppings as you develop further, while [agconti/cookiecutter-django-rest](https://github.com/agconti/cookiecutter-django-rest) changes things drastically in terms of settings,packages and project structure that i feel a need to start over.
@@ -31,7 +31,7 @@ First, get Cookiecutter:
3131

3232
Now run it against this repo:
3333

34-
$ cookiecutter https://github.com/n0tNoah/django-cookiecutter-rest/
34+
$ cookiecutter https://github.com/vi6hal/django-cookiecutter-rest/
3535

3636
You'll be prompted for some values. Provide them, then a Django project will be created for you.
3737

@@ -47,7 +47,7 @@ Suggestions,opinions & issues are welcome.
4747

4848
## Authors
4949

50-
* **Vishal P** - *Initiator* - [n0tNoah](https://github.com/Vi6hal)
50+
* **Vishal P** - *Initiator* - [vi6hal](https://github.com/Vi6hal)
5151

5252
## Acknowledgments
5353
- 🎩 Hat tip to anyone whose code was used

{{cookiecutter.project_slug}}/.github/workflows/master_checks.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout Code Repository
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v3
1919

2020
- name: Set up Python
21-
uses: actions/setup-python@v2
21+
uses: actions/setup-python@v4
2222
with:
2323
python-version: "3.8"
2424
cache: pip
@@ -37,7 +37,7 @@ jobs:
3737
safety check
3838
3939
- name: Checking Formatting & Linting Compliance
40-
uses: pre-commit/action@v2.0.3
40+
uses: pre-commit/action@v3.0.0
4141

4242
- name: Finding Bugs
4343
run: |
@@ -53,11 +53,11 @@ jobs:
5353
needs: [code_checks]
5454
runs-on: ubuntu-latest
5555
steps:
56-
- uses: actions/checkout@v2
56+
- uses: actions/checkout@v3
5757
with:
5858
fetch-depth: "0"
5959
- name: Creating Tag
60-
uses: anothrNick/github-tag-action@1.36.0
60+
uses: anothrNick/github-tag-action@1.52.0
6161
env:
6262
GITHUB_TOKEN: ${{ secrets.TOKEN }}
6363
DEFAULT_BUMP: patch

{{cookiecutter.project_slug}}/.github/workflows/pr_checks.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout Code Repository
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v3
1919

2020
- name: Set up Python
21-
uses: actions/setup-python@v2
21+
uses: actions/setup-python@v4
2222
with:
2323
python-version: "3.8"
2424
cache: pip
@@ -37,18 +37,18 @@ jobs:
3737
safety check
3838
3939
- name: Checking Formatting & Linting Compliance
40-
uses: pre-commit/action@v2.0.3
40+
uses: pre-commit/action@v3.0.0
4141

4242
testcases_and_coverage:
4343
name: Executing Test Cases & Coverage Report [PR]
4444
needs: [code_checks]
4545
runs-on: ubuntu-latest
4646
steps:
4747
- name: Checkout Code Repository
48-
uses: actions/checkout@v2
48+
uses: actions/checkout@v3
4949

5050
- name: Set up Python
51-
uses: actions/setup-python@v2
51+
uses: actions/setup-python@v4
5252
with:
5353
python-version: "3.8"
5454
cache: pip

{{cookiecutter.project_slug}}/.github/workflows/release_checks.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout Code Repository
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v3
1818

1919
- name: Set up Python
20-
uses: actions/setup-python@v2
20+
uses: actions/setup-python@v4
2121
with:
2222
python-version: "3.8"
2323
cache: pip
@@ -36,18 +36,18 @@ jobs:
3636
safety check
3737
3838
- name: Checking Formatting & Linting Compliance
39-
uses: pre-commit/action@v2.0.3
39+
uses: pre-commit/action@v3.0.0
4040

4141
testcases_and_coverage:
4242
name: Finding Bugs
4343
needs: [coding_standards_andvurnability_checks]
4444
runs-on: ubuntu-latest
4545
steps:
4646
- name: Checkout Code Repository
47-
uses: actions/checkout@v2
47+
uses: actions/checkout@v3
4848

4949
- name: Set up Python
50-
uses: actions/setup-python@v2
50+
uses: actions/setup-python@v4
5151
with:
5252
python-version: "3.8"
5353
cache: pip

{{cookiecutter.project_slug}}/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
# {{ cookiecutter.django_project_name }}
1212

13-
A Django project built using [n0tNoah/django-cookiecutter-rest](https://github.com/n0tNoah/django-cookiecutter-rest)
13+
A Django project built using [vi6hal/django-cookiecutter-rest](https://github.com/vi6hal/django-cookiecutter-rest)
1414

1515
## Dev-Setup
1616

@@ -23,7 +23,7 @@ git init
2323
## Installation
2424

2525
```bash
26-
git clone https://github.com/n0tNoah/django-cookiecutter-rest
26+
git clone https://github.com/vi6hal/django-cookiecutter-rest
2727
pip install -r requirements.txt
2828
python3 manage.py migrate
2929

0 commit comments

Comments
 (0)