TODO: Not yet adapted to Vite build environment
- web server e.g. apache (
sudo apt install apache2) - php (
sudo apt install php libapache2-mod-php) - node.js (
sudo apt install nodejs) - grunt (
npm install -g grunt-cli)
git clone https://github.com/<your username>/rg2
cd rg2
gruntIn your apache2.conf e.g. sudo vi /etc/apache2/apache2.conf
<Directory /path/to/rg2/>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
Alias "/rg2" "/path/to/rg2"
Then sudo service apache2 restart.
Edit rg2-config.txt and rename to rg2-config.php, suggested options:
define('RG_BASE_DIRECTORY', 'http://localhost/');
define('OVERRIDE_KARTAT_DIRECTORY', 'kartat/');Create some test data (from your rg2 directory)
mkdir kartat
mkdir kartat/cache
wget https://www.happyherts.routegadget.co.uk/kartat/cache/events.json -O kartat/cache/events.jsonGo to http://localhost/rg2/, and you should see your local rg2 app.