From f48c438a0e6e9109194ab81251340e3779fc255f Mon Sep 17 00:00:00 2001 From: Anatoly Kislov Date: Sun, 15 Oct 2017 02:31:06 +0300 Subject: [PATCH 1/2] chore: update readme (#45) --- README.md | 28 +++++++++++++++++++++------- 1 file changed, 21 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 26a55ecd..4f16f3cd 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,27 @@ -# sourcerer-app -Sourcerer hashes your git repos into intelligent engineering profiles. +

+
+ Sourcerer +
+ Sourcerer App +
+

+ +

+ Sourcerer app creates an intelligent profile for software engineers.
+ Get early access on Sourcerer. +

+
+ +Prerequirements +================= + +* Sourcerer alpha/beta access +* Linux or macOS +* Java Platform ([JRE](http://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html) for Linux or [JDK](http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html) for macOS) Install/uninstall ================= -Sourcerer requires Java Platform installed on the system. -* Proceed with JRE(http://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html) if on Linux, -* or with JDK(http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html) if on OS X. - To install sourcerer run the following command: ``` @@ -33,7 +47,7 @@ $ git clone https://github.com/sourcerer-io/sourcerer-app.git $ cd sourcerer-app # Build -$ gradle build +$ gradle build -Penv=production # Run the app $ java -jar build/libs/sourcerer-app.jar From ca4e164742cf457f69117cc90200379ee58c1cfd Mon Sep 17 00:00:00 2001 From: Anatoly Stansler Date: Wed, 12 Jun 2019 00:37:41 +0300 Subject: [PATCH 2/2] feat: disable sentry by default, force app update --- build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 5d03cedd..ea19aa52 100644 --- a/build.gradle +++ b/build.gradle @@ -36,14 +36,14 @@ buildConfig { buildConfigField 'String', 'PROFILE_URL', 'https://sourcerer.io/' // App version. - buildConfigField 'int', 'VERSION_CODE', '25' - buildConfigField 'String', 'VERSION', '0.3.13' + buildConfigField 'int', 'VERSION_CODE', '26' + buildConfigField 'String', 'VERSION', '0.3.14' // Logging. buildConfigField 'String', 'ENV', project.hasProperty('env') ? env : 'production' buildConfigField 'String', 'LOG_LEVEL', project.hasProperty('log') ? log : 'info' buildConfigField 'boolean', 'SILENT_USER_OUTPUT', project.hasProperty('silent') ? silent : 'false' - buildConfigField 'boolean', 'SENTRY_ENABLED', project.hasProperty('sentry') ? sentry : 'true' + buildConfigField 'boolean', 'SENTRY_ENABLED', project.hasProperty('sentry') ? sentry : 'false' buildConfigField 'String', 'SENTRY_DSN', 'https://0263d6473bd24a9ba40e25aa5fb0a242:c5451dc815074bff8ce3fb9f0851f2f5@sentry.io/233260' buildConfigField 'boolean', 'PRINT_STACK_TRACE', 'false'