This is the website of the Oude RKZ, on www.orkz.net.
This website is made with Grav. Grav is written in PHP and is a file-based website. It means that it uses only files on your computer, and does not need a database like MySQL. This allows us to place the full website (layout and content) in Github and track changes. It also means that when you download the files to your computer, you have an exact copy of the website, the way that it is online.
- Install WAMP or XAMP
- Find the Web folder (eg.
c:\wamp64\www) - Start WAMP and go to
http://localhostto see if it's working - Install Git for Windows
- Start Git Bash
cd /c/wamp64/wwwgit clone https://github.com/orxnet/orkz-website- Go to
http://localhost/orkz-website. You should see 'Run bin/grav install' - Go back to Git Bash
cd /c/wamp64/www/orkz-website- Run
/c/wamp64/bin/php/php5.6.35/php bin/grav install - Run
/c/wamp64/bin/php/php5.6.35/php bin/grav self-upgrade
- Install apache:
sudo apt install apache2 - Find the Web folder (eg.
/var/www/html) - Go to
http://localhostto see if it's working - Install Git:
sudo apt install git cd /var/www/htmlgit clone https://github.com/orxnet/orkz-website- Go to
http://localhost/orkz-website. You should see 'Run bin/grav install' cd /var/www/html/orkz-website- Run
bin/grav install - Run
bin/gpm self-upgrade - Run
bin/gpm install shortcode-core - Run
bin/gpm install admin
git status: check which files you changedgit diff: check what you actually changedgit stash: undo what you changedgit pull: pull latest work from onlinegit stash pop: reapply your changes on latest workgit commit: commit your work (think of a nice commit message)git pushorgit push origin master: push your work
git status: check if you dont have any stray changesgit stash: undo your stray changes if they are theregit log: check which is the most recent commit you have locally- Compare with latest commits online.
- If you are behind:
git pullorgit pull origin master git log: check if successfully pulledbin/gpm install: install new plugins if the.dependenciesfile was updated
- What is Grav?
- Install Grav in few seconds
- Understand the Configuration
- Take a peek at our available free Skeletons
- If you have questions, jump on our Slack Room!
- Have fun!
- Have a look at our Basic Tutorial
- Dive into more advanced functions
- Learn about the Grav CLI
- Review examples in the Grav Cookbook