├── .github
└── FUNDING.yml
├── .gitignore
└── README.md
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | # These are supported funding model platforms
2 |
3 | github: MattIPv4
4 | patreon: IPv4
5 | open_collective: # Replace with a single Open Collective username
6 | ko_fi: MattIPv4
7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8 | custom: https://paypal.me/MattIPv4Cowley
9 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Source: https://github.com/MattIPv4/template/blob/master/.gitignore
2 | # Defaults
3 |
4 | ## JetBrains
5 | .idea/
6 |
7 | ## Python: Virtual Environments
8 | venv/
9 | ## Python: Module building
10 | *.egg-info/
11 |
12 | ## Web Configs
13 | web.config
14 | .user.ini
15 |
16 | ## Node
17 | node_modules/
18 |
19 | ## macOS
20 | .DS_Store
21 |
22 | # Custom
23 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | The template README (and other files) for my GitHub repositories.
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 | ----
31 |
32 |
33 | ## Hello
34 |
35 | This repository stores my template README file along with other useful default & template files for my GitHub repositories.
36 |
37 |
38 | ## Contributing
39 |
40 | Contributions are always welcome to this project!\
41 | Take a look at any existing issues on this repository for starting places to help contribute towards, or simply create your own new contribution to the project.
42 |
43 | Please make sure to follow the existing standards within the project such as code styles, naming conventions and commenting/documentation.
44 |
45 | When you are ready, simply create a pull request for your contribution and I will review it whenever I can!
46 |
47 | ### Donating
48 |
49 | You can also help me and the project out by sponsoring me through [GitHub Sponsors](https://github.com/users/MattIPv4/sponsorship) (preferred), contributing through a [donation on PayPal](http://paypal.mattcowley.co.uk/) or by supporting me monthly on my [Patreon page](http://patreon.mattcowley.co.uk/).
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 | ## Discussion, Support and Issues
64 |
65 | Need support with this project, have found an issue or want to chat with others about contributing to the project?
66 | > Please check the project's issues page first for support & bugs!
67 |
68 | Not found what you need here?
69 |
70 | * If you have an issue, please create a GitHub issue here to report the situation, include as much detail as you can!
71 | * _or,_ You can join our Slack workspace to discuss any issue, to get support for the project or to chat with contributors and myself:
72 |
73 |
74 |
75 |
76 |
--------------------------------------------------------------------------------