This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
return [ | |
'db' => [ | |
'username' => '<USERNAME>', | |
'password' => '<PASSWORD>', | |
'dbname' => 'shopware', | |
'host' => 'localhost', | |
'port' => '3306' | |
], | |
// Disable backend cache |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- An ant target for running only tests that are part of the goup 'custom', using also a faster test setup --> | |
<target name="custom-tests" depends="build-cache-dir, build-config, build-database, build-create-admin-account, build-install-lock-file, build-disable-firstrunwizard"> | |
<exec executable="${script.phpunit}" failonerror="true" dir="${test.dir.shopware}"> | |
<arg value="--log-junit=${log.dir}/junit.xml"/> | |
<arg value="--group=custom"/> | |
</exec> | |
</target> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* DeviceUID.h | |
#import <Foundation/Foundation.h> | |
@interface DeviceUID : NSObject | |
+ (NSString *)uid; | |
@end | |
*/ | |
// Device.m |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sublime | |
import sublime_plugin | |
import subprocess | |
import os | |
from threading import Thread | |
##### | |
# The main compile method using the command line to navigate to the saved files directory | |
# and calling 'pdflatex' on the saved file. |
NewerOlder