Jump to content

User:Phuedx (WMF)/Metrics Platform/Getting Started/Hacking On Metrics Platform

From Wikitech

EventLogging

JS

PHP

Create extensions/EventLogging/composer.local.json with the following contents:

{
	"repositories": [
		{
			"type": "path",
			"@comment": "Either an absolute path or a path relative to the root composer.json file.",
			"url": "/path/to/metrics-platform",
			"options": {
				"symlink": false
			}
		}
	],
	"require": {
		"wikimedia/metrics-platform": "dev-master"
	}
}

Run composer update in the root directory.

JS

PHP

Java

https://www.youtube.com/watch?v=tMZx4zrrngc is a short video explaining how to set up IntelliJ IDEA so that you can start hacking on the Java MPC.

Swift