You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
site/wiki
Ben Harris f873046114
remove rsa recommendation from ssh wiki page
2 years ago
..
pages remove rsa recommendation from ssh wiki page 2 years ago
README.md add nginx config note 4 years ago
index.php avoid instantiating SplFileInfo objects 2 years ago

README.md

tilde.team 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 https://tildegit.org/yourusername/site
  • 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 template.md my-new-page.md
  • edit as needed!

  • test your changes with a local php server

composer install
php -S localhost:9000
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

deployment notes

as of a7305c7b the wiki uses pretty urls (while still supporting the old style of ?page= urls). to enable this functionality, add the following location block to your nginx configs for this site:

location ~* ^/wiki/(.+)$ {
    try_files $uri $uri/ /wiki/index.php?page=$1;
    include snippets/php.conf;
}

thanks!~

ps. if you have any questions, ask on irc! (preferably in #team)