mirror of
https://github.com/geode-sdk/example-mod.git
synced 2024-11-14 19:05:02 -05:00
Update gitignore, add extra files (#10)
Adds optional changelog.md and support.md files, so that users know they exist -------- Co-authored-by: matcool <26722564+matcool@users.noreply.github.com>
This commit is contained in:
parent
0efe3644d7
commit
aaa8f8eb84
6 changed files with 12 additions and 5 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
@ -49,7 +49,9 @@ build-*/
|
||||||
|
|
||||||
# ILY vscode
|
# ILY vscode
|
||||||
**/.vscode
|
**/.vscode
|
||||||
.idea/
|
|
||||||
|
# Local History for Visual Studio Code
|
||||||
|
.history/
|
||||||
|
|
||||||
# clangd
|
# clangd
|
||||||
.cache/
|
.cache/
|
||||||
|
@ -58,4 +60,5 @@ build-*/
|
||||||
.vs/
|
.vs/
|
||||||
|
|
||||||
# CLion
|
# CLion
|
||||||
|
.idea/
|
||||||
/cmake-build-*/
|
/cmake-build-*/
|
|
@ -11,12 +11,13 @@ We recommend heading over to [the getting started section on our docs](https://d
|
||||||
## Build instructions
|
## Build instructions
|
||||||
For more info, see [our docs](https://docs.geode-sdk.org/getting-started/create-mod#build)
|
For more info, see [our docs](https://docs.geode-sdk.org/getting-started/create-mod#build)
|
||||||
```sh
|
```sh
|
||||||
# Assuming you have the CLI set up already
|
# Assuming you have the Geode CLI set up already
|
||||||
geode build
|
geode build
|
||||||
```
|
```
|
||||||
|
|
||||||
# Resources
|
# Resources
|
||||||
* [Geode SDK Documentation](https://docs.geode-sdk.org/)
|
* [Geode SDK Documentation](https://docs.geode-sdk.org/)
|
||||||
* [Geode SDK Source Code](https://github.com/geode-sdk/geode/)
|
* [Geode SDK Source Code](https://github.com/geode-sdk/geode/)
|
||||||
|
* [Geode CLI](https://github.com/geode-sdk/cli)
|
||||||
* [Bindings](https://github.com/geode-sdk/bindings/)
|
* [Bindings](https://github.com/geode-sdk/bindings/)
|
||||||
* [Dev Tools](https://github.com/geode-sdk/DevTools)
|
* [Dev Tools](https://github.com/geode-sdk/DevTools)
|
||||||
|
|
2
changelog.md
Normal file
2
changelog.md
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
# 1.0.0
|
||||||
|
- Edit this file to change your mod's changelog.
|
1
support.md
Normal file
1
support.md
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Edit this file to change your mod's support info, or delete it if you don't need it.
|
Loading…
Reference in a new issue