Skip to content

Commit 62ed246

Browse files
authored
chore: 🔥 remove lines and files since they are in template now (#177)
## Description Since I made a template repo at `template-python-project`, we don't need to keep these files and lines here. So removed the. See #170 ## Reviewer Focus <!-- Please delete as appropriate: --> This PR needs a quick review.
2 parents c09030e + 399a59d commit 62ed246

16 files changed

+16
-545
lines changed

.github/ISSUE_TEMPLATE/USER-STORY.yml

Lines changed: 0 additions & 25 deletions
This file was deleted.

.github/sync.yml

Lines changed: 0 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ group:
1616
- source: .github/workflows/add-to-project.yml
1717
dest: .github/workflows/add-to-project.yml
1818
repos: |
19-
seedcase-project/seedcase-sprout
2019
seedcase-project/seedcase-website
2120
seedcase-project/seedcase-theme
2221
seedcase-project/community
@@ -25,38 +24,6 @@ group:
2524
seedcase-project/data
2625
seedcase-project/decisions
2726
28-
# Python Django project repositories
29-
- files:
30-
# Actions
31-
- source: common/actions/dependabot.yml
32-
dest: .github/dependabot.yml
33-
- source: common/actions/deploy-pr-preview.yml
34-
dest: .github/workflows/deploy-pr-preview.yml
35-
- source: common/actions/deploy-demo.yml
36-
dest: .github/workflows/deploy-demo.yml
37-
- source: common/actions/deploy-docs.yml
38-
dest: .github/workflows/deploy-docs.yml
39-
40-
# VSCode Settings
41-
- source: .vscode/google-notypes.mustache
42-
dest: .vscode/google-notypes.mustache
43-
- source: .vscode/python.code-snippets
44-
dest: .vscode/python.code-snippets
45-
- source: .vscode/launch.json
46-
dest: .vscode/launch.json
47-
48-
# Misc
49-
- source: common/justfile/django
50-
dest: justfile
51-
- source: common/ruff.toml
52-
dest: ruff.toml
53-
- source: common/LICENSE.md
54-
dest: LICENSE.md
55-
- source: common/templates/software-pull-request.md
56-
dest: .github/pull_request_template.md
57-
repos: |
58-
seedcase-project/seedcase-sprout
59-
6027
# Website repositories
6128
- files:
6229
- source: .github/pull_request_template.md

.gitignore

Lines changed: 1 addition & 77 deletions
Original file line numberDiff line numberDiff line change
@@ -9,72 +9,9 @@ dev/
99
# Any IDE specific folders
1010
.idea
1111

12-
# Any .env files
13-
.env
14-
.env.*
15-
**/.env.*
16-
.env
17-
.venv
18-
env/
19-
venv/
20-
ENV/
21-
env.bak/
22-
venv.bak/
23-
24-
# Python specific content
25-
venv
26-
__pycache__/
27-
*.py[cod]
28-
*$py.class
29-
.ipynb_checkpoints
30-
profile_default/
31-
ipython_config.py
32-
33-
# Python packaging and distribution
34-
.Python
35-
build/
36-
develop-eggs/
37-
dist/
38-
downloads/
39-
eggs/
40-
.eggs/
41-
lib/
42-
lib64/
43-
parts/
44-
sdist/
45-
var/
46-
wheels/
47-
share/python-wheels/
48-
*.egg-info/
49-
.installed.cfg
50-
*.egg
51-
MANIFEST
52-
53-
# Python testing and code coverage
54-
htmlcov/
55-
.tox/
56-
.nox/
57-
.coverage
58-
.coverage.*
59-
.cache
60-
nosetests.xml
61-
coverage.xml
62-
*.cover
63-
*.py,cover
64-
.hypothesis/
65-
.pytest_cache/
66-
cover/
67-
junit/
68-
69-
# MacO
12+
# MacOS
7013
.DS_Store
7114

72-
# R and RStudio
73-
.Rbuildignore
74-
.Rhistory
75-
.RData
76-
.Rproj.user
77-
7815
# Quarto
7916
/.quarto/
8017
docs/.quarto/
@@ -85,16 +22,3 @@ _book
8522
public
8623
site
8724

88-
# Local data files
89-
**/datafile/*
90-
# Persistent storage should not be stored in git except for the markdown files
91-
persistent_storage
92-
!persistent_storage/**/*.md
93-
94-
# Python Django
95-
*.log
96-
local_settings.py
97-
db.sqlite3
98-
db.sqlite3-journal
99-
# We'll disable migrations for now, until we have actual users
100-
migrations

.vscode/extensions.json

Lines changed: 15 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,17 @@
11
{
2-
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
3-
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
4-
// List of extensions which should be recommended for users of this workspace.
5-
"recommendations": [
6-
"jebbs.plantuml",
7-
"batisteo.vscode-django",
8-
"donjayamanne.githistory",
9-
"felipecaputo.git-project-manager",
10-
"GitHub.vscode-pull-request-github",
11-
"ms-azuretools.vscode-docker",
12-
"ms-python.python",
13-
"ms-python.vscode-pylance",
14-
"njpwerner.autodocstring",
15-
"quarto.quarto",
16-
"streetsidesoftware.code-spell-checker",
17-
"vivaxy.vscode-conventional-commits",
18-
"charliermarsh.ruff",
19-
"pshaddel.conventional-branch",
20-
"yy0931.vscode-sqlite3-editor",
21-
"junstyle.vscode-django-support",
22-
"monosans.djlint"
23-
],
24-
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
25-
"unwantedRecommendations": []
2+
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
3+
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
4+
// List of extensions which should be recommended for users of this workspace.
5+
"recommendations": [
6+
"jebbs.plantuml",
7+
"donjayamanne.githistory",
8+
"felipecaputo.git-project-manager",
9+
"GitHub.vscode-pull-request-github",
10+
"quarto.quarto",
11+
"streetsidesoftware.code-spell-checker",
12+
"vivaxy.vscode-conventional-commits",
13+
"pshaddel.conventional-branch"
14+
],
15+
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
16+
"unwantedRecommendations": []
2617
}

.vscode/google-notypes.mustache

Lines changed: 0 additions & 36 deletions
This file was deleted.

.vscode/launch.json

Lines changed: 0 additions & 30 deletions
This file was deleted.

.vscode/python.code-snippets

Lines changed: 0 additions & 33 deletions
This file was deleted.

.vscode/settings.json

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,9 @@
33
"editor.tabSize": 2,
44
"editor.wordWrap": "off",
55
"editor.formatOnSave": true,
6-
"editor.codeActionsOnSave": {
7-
"source.organizeImports": "always"
8-
},
96
"git.autofetch": false,
107
"quarto.visualEditor.markdownWrap": "column",
118
"quarto.visualEditor.markdownWrapColumn": 72,
12-
"autoDocstring.customTemplatePath": ".vscode/google-notypes.mustache",
139
"editor.tabCompletion": "on",
1410
"editor.snippetSuggestions": "inline",
1511
"conventional-branch.type": [
@@ -24,19 +20,9 @@
2420
"chore", // Misc things, like renaming or deleting files
2521
],
2622
"conventional-branch.format": "{Type}/{Branch}",
27-
"[python]": {
28-
"editor.defaultFormatter": "charliermarsh.ruff"
29-
},
30-
"[html][django-html]": {
31-
"editor.defaultFormatter": "monosans.djlint"
32-
},
33-
"python.defaultInterpreterPath": "${workspaceFolder}/.venv",
34-
"python.languageServer": "Pylance",
3523
"files.insertFinalNewline": true,
3624
"cSpell.enableFiletypes": [
3725
"quarto"
3826
],
3927
"cSpell.language": "en,en-GB",
40-
"python.testing.pytestEnabled": true,
41-
"python.testing.pytestPath": "${workspaceFolder}/.venv/bin/pytest",
4228
}

common/LICENSE.md

Lines changed: 0 additions & 21 deletions
This file was deleted.

common/actions/dependabot.yml

Lines changed: 0 additions & 13 deletions
This file was deleted.

0 commit comments

Comments
 (0)