Setting up development environment: Difference between revisions
From MoodleDocs
No edit summary |
No edit summary |
||
Line 41: | Line 41: | ||
* [[Setting_up_Netbeans | Netbeans]] | * [[Setting_up_Netbeans | Netbeans]] | ||
== Other tools == | |||
* [[Grunt#Install_grunt | Grunt]] | |||
* [https://ngrok.com/download Ngrok] | |||
** Use [https://ngrok.com/docs#authtoken authtoken] for better experience | |||
** [https://gist.github.com/andrewnicols/a338c43feca0a87a60248b8097de2ef5 MDK integration] | |||
== Docker == | |||
* [https://github.com/moodlehq/moodle-docker] | |||
[[Category:Developer tools|Development environment]] | [[Category:Developer tools|Development environment]] |
Revision as of 17:22, 4 September 2018
This is a quick guide which contains all the tools you'll need to configure your development environment:
Git
Apache + PHP
- Depending on your computer's OS:
- Enable SSL for Apache (Transitioning to HTTPS)
Dabatase
- Server:
- PostgreSQL (recommended)
- MariaDB (recommended)
- MySQL
- MSSQL
- Oracle (not recommended)
- Client:
Moodle Development Kit (MDK)
Only for Linux and MacOS (not available for Windows)
- Setup
- Sample to create some instances (both based on master, first using PostgreSQL and second MySQL:
mdk create --install --engine pgsql --run mindev users makecourse
mdk create --install --engine mysqli --run mindev users makecourse -n stable_master-mysql
- Behat
- JRE
- GoogleChrome driver (Firefox stopped working)
IDE
Other tools
- Grunt
- Ngrok
- Use authtoken for better experience
- MDK integration