forked from cory/tildefriends
Compare commits
4 Commits
43f6a3a482
...
1b3b9e570e
Author | SHA1 | Date | |
---|---|---|---|
1b3b9e570e | |||
912747bdac | |||
80c1463a5c | |||
f2a3c790dd |
3
.gitea/ISSUE_TEMPLATE/bug-report.md
Normal file
3
.gitea/ISSUE_TEMPLATE/bug-report.md
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
name: 'Bug Report'
|
||||||
|
---
|
5
.gitea/ISSUE_TEMPLATE/config.yaml
Normal file
5
.gitea/ISSUE_TEMPLATE/config.yaml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
blank_issues_enabled: true
|
||||||
|
contact_links:
|
||||||
|
- name: Documentation
|
||||||
|
url: https://dev.tildefriends.net/cory/tildefriends/src/branch/main/docs/index.md
|
||||||
|
about: Read the documentation
|
3
.gitea/ISSUE_TEMPLATE/feature-rquest.md
Normal file
3
.gitea/ISSUE_TEMPLATE/feature-rquest.md
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
name: 'Feature Request'
|
||||||
|
---
|
9
.gitea/PULL_REQUEST_TEMPLATE.md
Normal file
9
.gitea/PULL_REQUEST_TEMPLATE.md
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
To Do List
|
||||||
|
|
||||||
|
- [ ] My changes are documented in the [documentation](https://dev.tildefriends.net/cory/tildefriends/src/branch/main/docs/index.md)
|
||||||
|
- [ ] I have tested my changes
|
||||||
|
- [ ] I agree to the contribution guidelines
|
||||||
|
- [ ] [C](https://dev.tildefriends.net/cory/tildefriends/src/branch/main/docs/guidelines/c-guidelines.md)
|
||||||
|
- [ ] [JavaScript](https://dev.tildefriends.net/cory/tildefriends/src/branch/main/docs/guidelines/javascript-guidelines.md)
|
||||||
|
- [ ] [documentation](https://dev.tildefriends.net/cory/tildefriends/src/branch/main/docs/guidelines/documentation-guidelines.md)
|
||||||
|
<!-- - [ ] I agree to the [Code of Conduct]() -->
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -8,4 +8,5 @@ out
|
|||||||
*.swo
|
*.swo
|
||||||
*.swp
|
*.swp
|
||||||
.zsign_cache/
|
.zsign_cache/
|
||||||
|
result
|
||||||
NOTES.md
|
NOTES.md
|
||||||
|
@ -14,7 +14,7 @@ It is both a peer-to-peer social network client, participating in Secure Scuttle
|
|||||||
|
|
||||||
## Documentation
|
## Documentation
|
||||||
|
|
||||||
Docs are a work in progress in the `docs` folder, or alternatively in Tilde Friends: <https://www.tildefriends.net/~cory/wiki/#test-wiki/tf-app-quick-reference>.
|
Docs are a work in progress: [documentation](https://dev.tildefriends.net/cory/tildefriends/src/branch/main/docs/index.md), or alternatively in Tilde Friends: <https://www.tildefriends.net/~cory/wiki/#test-wiki/tf-app-quick-reference>.
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
|
@ -32,7 +32,6 @@ main();
|
|||||||
|
|
||||||
Save the app, and you should now be seeing `Hello world!` on the screen.
|
Save the app, and you should now be seeing `Hello world!` on the screen.
|
||||||
|
|
||||||
|
|
||||||
## Components
|
## Components
|
||||||
|
|
||||||
Once your app grows to a certain size, you'll want to introduce components.
|
Once your app grows to a certain size, you'll want to introduce components.
|
||||||
@ -49,6 +48,6 @@ TODO: tfrpc
|
|||||||
|
|
||||||
Apps can interact with Tilde Friends using tfrpc.
|
Apps can interact with Tilde Friends using tfrpc.
|
||||||
|
|
||||||
Read <tfrpc.md>
|
Read [tfrpc.md](https://dev.tildefriends.net/cory/tildefriends/src/branch/main/docs/apps/tfrpc.md)
|
||||||
|
|
||||||
TODO: sharing apps
|
TODO: sharing apps
|
||||||
|
@ -4,5 +4,4 @@ Quick start
|
|||||||
|
|
||||||
Complete documentation
|
Complete documentation
|
||||||
|
|
||||||
|
|
||||||
TODO
|
TODO
|
||||||
|
@ -41,7 +41,7 @@ To build in docker, `docker build .`
|
|||||||
<!-- On NixOS: TODO -->
|
<!-- On NixOS: TODO -->
|
||||||
<!-- Add shell.nix and nix derivs first -->
|
<!-- Add shell.nix and nix derivs first -->
|
||||||
|
|
||||||
Now that you have a binary, head over to <running.md>.
|
Now that you have a binary, head over to [running.md](https://dev.tildefriends.net/cory/tildefriends/src/branch/main/docs/running.md).
|
||||||
|
|
||||||
## Troubleshooting
|
## Troubleshooting
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ TODO
|
|||||||
|
|
||||||
- I want to write documentation !
|
- I want to write documentation !
|
||||||
|
|
||||||
Great! Before you do, have a look at the [documentation guidelines](guidelines/documentation-guidelines.md) to learn how to write consistent documentation.
|
Great! Before you do, have a look at the [documentation guidelines](https://dev.tildefriends.net/cory/tildefriends/src/branch/main/docs/guidelines/documentation-guidelines.md) to learn how to write consistent documentation.
|
||||||
|
|
||||||
In all cases:
|
In all cases:
|
||||||
|
|
||||||
|
@ -2,12 +2,12 @@
|
|||||||
|
|
||||||
## Building
|
## Building
|
||||||
|
|
||||||
See <building.md>.
|
See [building.md](https://dev.tildefriends.net/cory/tildefriends/src/branch/main/docs/building.md).
|
||||||
|
|
||||||
## Contibuting
|
## Contibuting
|
||||||
|
|
||||||
See <contributing.md>.
|
See [contributing.md](https://dev.tildefriends.net/cory/tildefriends/src/branch/main/docs/contributing.md).
|
||||||
|
|
||||||
## FAQ / Troubleshooting
|
## FAQ / Troubleshooting
|
||||||
|
|
||||||
See <faq.md>.
|
See [faq.md](https://dev.tildefriends.net/cory/tildefriends/src/branch/main/docs/faq.md).
|
||||||
|
@ -2,15 +2,12 @@
|
|||||||
|
|
||||||
## I started tildefriends. Now what ?
|
## I started tildefriends. Now what ?
|
||||||
|
|
||||||
See <running.md>.
|
See [running.md](https://dev.tildefriends.net/cory/tildefriends/src/branch/main/docs/running.md).
|
||||||
|
|
||||||
### The compiler throws an error and I can't build the binary
|
### The compiler throws an error and I can't build the binary
|
||||||
|
|
||||||
See <building.md>.
|
See [building.md](https://dev.tildefriends.net/cory/tildefriends/src/branch/main/docs/building.md).
|
||||||
|
|
||||||
### Where is my database located ?
|
### Where is my database located ?
|
||||||
|
|
||||||
TODO
|
TODO
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
TODO
|
# TODO
|
||||||
|
@ -1 +1 @@
|
|||||||
TODO
|
# TODO
|
||||||
|
Loading…
Reference in New Issue
Block a user