tilde.chat/wiki
el 44b2200981 Remove servers no longer in /map 2023-04-18 05:30:33 +00:00
..
pages Remove servers no longer in /map 2023-04-18 05:30:33 +00:00
README.md minor text corrections based on my previous contribution (#57) 2023-02-11 15:34:38 +00:00
index.php validate page parameter to be a local filename 2023-01-26 18:39:24 +00:00

README.md

tilde.chat wiki

hi there, welcome to our wiki!

to contribute to the wiki:

  • fork the repo

  • clone the repo to your local machine (or your public_html folder on the tilde.team box for live testing)

git clone git@tildegit.org:tildeverse/tilde.chat
cd tilde.chat
  • create a new branch for your page
git checkout -b my-new-page
  • if you want to add a new page, copy template.md into your new page!
cp wiki/template.md wiki/my-new-page.md
  • test your changes locally
composer install
php -S localhost:9000

this will run your site at http://localhost:9000/

if you are running the development server on your tilde account, you will not be able to access it on (hostname):9000 because it only runs on localhost, but you can create a tunnel with ssh -L 9000:localhost:9000 to access from your localhost:9000 address

git add --all
git commit -m "added my-new-page"
git push origin my-new-page # this should match the branch name you created earlier
  • create a pull request on the site repo

thanks!~

ps. if you have any questions, ask on irc! (try #helpdesk or #meta)