- XAMPP for Windows: https://www.apachefriends.org/de/download.html
- Download Xdebug for:
[ | |
{ "keys": ["ctrl+alt+p"], "command": "prompt_select_workspace" } | |
] |
[ | |
{ "keys": ["ctrl+alt+;", ";"], "command": "toggle_side_bar" }, | |
{ "keys": ["ctrl+alt+;", "'"], "command": "toggle_minimap" }, | |
{ "keys": ["ctrl+alt+;", "w"], "command": "toggle_setting", "args": {"setting": "word_wrap"}}, | |
{ "keys": ["ctrl+alt+c"], "command": "" }, | |
{ "keys": ["ctrl+shift+b"], "command": "build", "args": {"variant": "Run Java"} }, | |
{ "keys": ["ctrl+alt+p"], "command": "prompt_select_workspace" } | |
] |
{ | |
"bold_folder_labels": true, | |
"caret_style": "phase", | |
"color_scheme": "Packages/Colorsublime - Themes/Capo-Light.tmTheme", | |
"dictionary": "Packages/Dictionaries/Polish.dic", | |
"draw_indent_guides": true, | |
"fade_fold_buttons": false, | |
"file_exclude_patterns": | |
[ | |
"*.jpg", |
[ | |
{ | |
"class": "sidebar_label", | |
"color": [50, 50, 50], | |
"font.bold": false, | |
"font.size": 15, | |
"shadow_color": [190, 190, 190], | |
"shadow_offset": [1, 1], | |
}, | |
{ |
{ | |
"cmd": ["javac", "$file"], | |
"file_regex": "^(...*?):([0-9]*):?([0-9]*)", | |
"selector": "source.java", | |
"shell": true, | |
"encoding": "cp1250", | |
"variants": [ | |
{ "cmd": ["java", "$file_base_name"], | |
"name": "Run Java" |
# Apache | |
# ------ | |
# Install | |
apt-get install -y apache2 | |
# Remove /var/www default | |
rm -rf /var/www | |
# Symlink /vagrant to /var/www |
<VirtualHost *:80> | |
ServerAdmin $EMAIL | |
DocumentRoot $DOCROOT | |
ServerName $SERVER_NAME | |
ServerAlias $SERVER_ALIAS | |
#ErrorLog "logs/dummy-host.example.com-error.log" | |
#CustomLog "logs/dummy-host.example.com-access.log" common | |
</VirtualHost> |
FROM php:7.1.2-apache | |
RUN docker-php-ext-install mysqli |