Skip to content

Commit a26c0f7

Browse files
committed
first commit
0 parents  commit a26c0f7

15 files changed

+807
-0
lines changed

.github/FUNDING.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
github: thedaviddias
2+
ko_fi: thedaviddias
3+
patreon: thedaviddias
4+
buy_me_a_coffee: thedaviddias
5+
thanks_dev: thedaviddias
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Links Checker
2+
3+
on:
4+
repository_dispatch:
5+
workflow_dispatch:
6+
schedule:
7+
- cron: '0 0 * * 1' # bi weekly on Monday
8+
9+
jobs:
10+
links-checker:
11+
runs-on: ubuntu-latest
12+
name: Links Checker
13+
permissions:
14+
issues: write
15+
16+
steps:
17+
- uses: actions/checkout@v4
18+
19+
- name: Link Checker
20+
id: lychee
21+
uses: lycheeverse/[email protected]
22+
with:
23+
args: --config ./lychee.toml --verbose --no-progress README.md
24+
fail: true
25+
26+
- name: Create Issue From File
27+
if: env.exit_code != 0
28+
uses: peter-evans/create-issue-from-file@v5
29+
with:
30+
title: Link Checker Report
31+
content-filepath: ./lychee-out.md
32+
labels: report, automated issue

.github/workflows/readme-check.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Readme Check
2+
3+
on:
4+
push:
5+
paths:
6+
- 'README.md'
7+
pull_request:
8+
paths:
9+
- 'README.md'
10+
11+
jobs:
12+
readme-check:
13+
runs-on: ubuntu-latest
14+
name: Readme Check
15+
16+
steps:
17+
- uses: actions/checkout@v4
18+
19+
- name: Setup Node.js
20+
uses: actions/setup-node@v4
21+
with:
22+
node-version: '22'
23+
24+
- name: Setup pnpm
25+
uses: pnpm/action-setup@v4
26+
with:
27+
version: 9
28+
29+
- name: Install dependencies
30+
run: pnpm i
31+
32+
- name: Check Markdown formatting
33+
run: pnpm format:check
34+
35+
- name: Lint Markdown
36+
run: pnpm lint:md
37+
38+
- name: Link Checker
39+
uses: lycheeverse/[email protected]
40+
with:
41+
args: --config ./lychee.toml --verbose --no-progress README.md
42+
fail: true

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
.lycheecache
3+
lychee-out.md

.husky/pre-push

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/usr/bin/env sh
2+
. "$(dirname -- "$0")/_/husky.sh"
3+
4+
pnpm format:fix
5+
6+
pnpm lint:md

.markdownlint.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"MD013": false,
3+
"MD024": false
4+
}

.prettierrc

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"trailingComma": "all",
3+
"tabWidth": 2,
4+
"semi": true,
5+
"singleQuote": true,
6+
"printWidth": 150,
7+
"overrides": [
8+
{
9+
"files": "*.md",
10+
"options": {
11+
"parser": "markdown",
12+
"proseWrap": "preserve"
13+
}
14+
}
15+
]
16+
}

.vscode/extensions.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"recommendations": [
3+
"esbenp.prettier-vscode",
4+
"DavidAnson.vscode-markdownlint"
5+
]
6+
}

.vscode/settings.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"[markdown]": {
3+
"editor.defaultFormatter": "esbenp.prettier-vscode",
4+
"editor.formatOnSave": true
5+
},
6+
"markdownlint.config": {
7+
"MD013": false,
8+
"MD024": false
9+
}
10+
}

CONTRIBUTING.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
## 🤝 Contributing and Feedback
2+
3+
Thank you for your interest in the Indie Dev Toolkit! This curated list is a personal project maintained by @thedaviddias. While I'm not currently accepting direct contributions to the repository, your input and feedback are valuable to me and the community.
4+
5+
### How You Can Help
6+
7+
1. **Share Your Experience**: If you've used any of the listed tools or have insights about them, please share your experiences. Your real-world feedback can help others make informed decisions.
8+
9+
2. **Suggest Tools**: While I can't guarantee inclusion, I'm always interested in learning about new tools that benefit indie hackers and startups. If you know of a great tool that fits the criteria of this list, feel free to suggest it.
10+
11+
3. **Report Issues**: If you notice any outdated information, broken links, or errors, please let me know.
12+
13+
### Ways to Engage
14+
15+
- **Discussions**: Join or start a discussion in the [GitHub Discussions](https://github.com/thedaviddias/indie-dev-toolkit/discussions) section of this repository. This is a great place for sharing experiences, asking questions, or suggesting tools.
16+
17+
- **Issues**: For reporting factual errors or outdated information, please open an [issue](https://github.com/thedaviddias/indie-dev-toolkit/issues).
18+
19+
- **Social Media**: Follow me on [X @thedaviddias](https://x.com/thedaviddias) for updates and discussions about indie hacking and the tools in this list.
20+
21+
### Update Process
22+
23+
I regularly review and update this list based on my personal experiences, community feedback, and changes in the indie hacking landscape. While I consider all suggestions, the final decision on inclusions and changes rests with me to maintain the list's quality and focus.
24+
25+
### Contributors
26+
27+
While this project doesn't accept direct contributions, I'd like to acknowledge the invaluable feedback and suggestions from the indie hacker community that help keep this resource relevant and useful.
28+
29+
Thank you for being part of this journey to empower indie hackers and startups with the best tools and resources!
30+
31+
---
32+
33+
Maintained with ❤️ by [David Dias](https://thedaviddias.com)

0 commit comments

Comments
 (0)