Skip to content

Commit

Permalink
First commit with react and Vite
Browse files Browse the repository at this point in the history
  • Loading branch information
Shivam Rastogi committed Jan 27, 2024
0 parents commit 069bceb
Show file tree
Hide file tree
Showing 264 changed files with 22,648 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# http://editorconfig.org

root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.{py,rst,ini}]
indent_style = space
indent_size = 4

[*.{html,css,scss,json,yml,xml}]
indent_style = space
indent_size = 2

[*.md]
trim_trailing_whitespace = false

[Makefile]
indent_style = tab

[nginx.conf]
indent_style = space
indent_size = 2
4 changes: 4 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[flake8]
exclude = docs
max-line-length = 119
extend-ignore = E203
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto
56 changes: 56 additions & 0 deletions .github/CONTRIBUTORS-template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# Contributors

## Core Developers

These contributors have commit flags for the repository, and are able to
accept and merge pull requests.

<table>
<tr>
<th>Name</th>
<th>Github</th>
<th>Twitter</th>
</tr>
{%- for contributor in core_contributors %}
<tr>
<td>{{ contributor.name }}</td>
<td>
<a href="https://github.com/{{ contributor.github_login }}">{{ contributor.github_login }}</a>
</td>
<td>{{ contributor.twitter_username }}</td>
</tr>
{%- endfor %}
</table>

_Audrey is also the creator of Cookiecutter. Audrey and Daniel are on
the Cookiecutter core team._

## Other Contributors

Listed in alphabetical order.

<table>
<tr>
<th>Name</th>
<th>Github</th>
<th>Twitter</th>
</tr>
{%- for contributor in other_contributors %}
<tr>
<td>{{ contributor.name }}</td>
<td>
<a href="https://github.com/{{ contributor.github_login }}">{{ contributor.github_login }}</a>
</td>
<td>{{ contributor.twitter_username }}</td>
</tr>
{%- endfor %}
</table>

### Special Thanks

The following haven't provided code directly, but have provided
guidance and advice.

- Jannis Leidel
- Nate Aune
- Barry Morrison
5 changes: 5 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# These are supported funding model platforms

github: [pydanny, browniebroke]
patreon: feldroy
open_collective: cookiecutter-django
64 changes: 64 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
---
name: Bug Report
about: Report a bug
labels: bug
---

## What happened?

## What should've happened instead?

## Additional details

<!-- To assist you best, please include commands that you've run, options you've selected and any relevant logs -->

- Host system configuration:

- Version of cookiecutter CLI (get it with `cookiecutter --version`):
- OS name and version:

On Linux, run

```bash
lsb_release -a 2> /dev/null || cat /etc/redhat-release 2> /dev/null || cat /etc/*-release 2> /dev/null || cat /etc/issue 2> /dev/null
```

On MacOs, run

```bash
sw_vers
```

On Windows, via CMD, run

```
systeminfo | findstr /B /C:"OS Name" /C:"OS Version"
```

```bash
# Insert here the OS name and version
```

- Python version, run `python3 -V`:
- Docker version (if using Docker), run `docker --version`:
- docker compose version (if using Docker), run `docker compose --version`:
- ...

- Options selected and/or [replay file](https://cookiecutter.readthedocs.io/en/latest/advanced/replay.html):
On Linux and macOS: `cat ${HOME}/.cookiecutter_replay/cookiecutter-django.json`
(Please, take care to remove sensitive information)

```json
```

<summary>
Logs:
<details>
<pre>
$ cookiecutter https://github.com/cookiecutter/cookiecutter-django
project_name [Project Name]: ...
</pre>
</details>
</summary>
13 changes: 13 additions & 0 deletions .github/ISSUE_TEMPLATE/feature.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
name: New Feature Proposal
about: Propose a new feature
labels: enhancement
---

## Description

What are you proposing? How should it be implemented?

## Rationale

Why should this feature be implemented?
12 changes: 12 additions & 0 deletions .github/ISSUE_TEMPLATE/paid-support.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
name: Paid Support Request
about: Ask Core Team members to help you out
---

Provided your question goes beyond [regular support](https://github.com/cookiecutter/cookiecutter-django/issues/new?template=question.md), and/or the task at hand is of timely/high priority nature use the below information to reach out for contributors directly.

- Bruno Alla, Core Developer ([GitHub](https://github.com/sponsors/browniebroke)).

- Daniel Roy Greenfeld, Project Lead ([GitHub](https://github.com/pydanny), [Patreon](https://www.patreon.com/danielroygreenfeld)): expertise in Django and AWS ELB.

- Nikita Shupeyko, Core Developer ([GitHub](https://github.com/webyneter)): expertise in Python/Django, hands-on DevOps and frontend experience.
11 changes: 11 additions & 0 deletions .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
name: Question
about: Please ask your question on StackOverflow, Discord or GitHub Discussions.
labels: question
---

First, make sure to examine [the docs](https://cookiecutter-django.readthedocs.io/en/latest/). If that doesn't help, we recommend one of these 3 main channels:

- If your issue is related to Django + something else but was generated with cookiecutter-django, the best is to post a question on [StackOverflow](https://stackoverflow.com/questions/tagged/cookiecutter-django) tagged with `cookiecutter-django`, you would get more visibility from other communities as well.
- Join us on [Discord](https://discord.gg/uFXweDQc5a) and ask around.
- Start [a discussion](https://github.com/cookiecutter/cookiecutter-django/discussions) on our project's GitHub.
17 changes: 17 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!-- Thank you for helping us out: your efforts mean a great deal to the project and the community as a whole! -->

## Description

<!-- What's it you're proposing? -->

Checklist:

- [ ] I've made sure that tests are updated accordingly (especially if adding or updating a template option)
- [ ] I've updated the documentation or confirm that my change doesn't require any updates

## Rationale

<!--
Why does this project need the change you're proposing?
If this pull request fixes an open issue, don't forget to link it with `Fix #NNNN`
-->
11 changes: 11 additions & 0 deletions .github/changelog-template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{%- for change_type, pulls in grouped_pulls.items() %}
{%- if pulls %}

### {{ change_type }}

{%- for pull_request in pulls %}

- {{ pull_request.title }} ([#{{ pull_request.number }}]({{ pull_request.html_url }}))
{%- endfor -%}
{% endif -%}
{% endfor -%}
Loading

0 comments on commit 069bceb

Please sign in to comment.