From 86a50a4f6df9ece982743a3b7ca510846d248909 Mon Sep 17 00:00:00 2001 From: leonoverweel Date: Tue, 24 Jan 2017 12:05:15 +0100 Subject: Initial commit --- .gitignore | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .gitignore (limited to '.gitignore') diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..7abc763b --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +.DS_Store +*.pyc +*.pyo +venv +venv* +dist +build +*.egg +*.egg-info +_mailinglist +.tox +.cache/ +.idea/ +config/ -- cgit v1.2.3 From c96e6ffafb62bde1e08987b1fdf3c0786487f6ec Mon Sep 17 00:00:00 2001 From: Georgios Andreadis Date: Tue, 24 Jan 2017 12:06:09 +0100 Subject: Initial commit --- .gitignore | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .gitignore (limited to '.gitignore') diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..28aa7add --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +# NPM dependencies +node_modules/ + +# Generated assets +build/ + +# TypeScript specific file +src/scripts/.baseDir.ts + +# TypeScript definitions +typings/ + +# Yarn lockfile +yarn.lock \ No newline at end of file -- cgit v1.2.3 From 070ce923574dcc57435cb3fb2dfe86b6a38cd249 Mon Sep 17 00:00:00 2001 From: MDBijman Date: Tue, 24 Jan 2017 12:15:26 +0100 Subject: Initial code commit with organized dependencies --- .gitignore | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitignore (limited to '.gitignore') diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..ca9bdab5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,17 @@ +.vs +x64 +Simulator.sdf +Simulator.v11.suo +Simulator.VC.db +Simulator.VC.VC.db +Simulator.VC.VC.opendb +Debug + +Simulator/x64 +Simulator/*.db +Simulator/docs +Simulator/Release + +Testing/x64 +Testing/Debug +Testing/LastCoverageResults.log \ No newline at end of file -- cgit v1.2.3 From 69ce51f4c4ce96fabb217459cec51d800e712344 Mon Sep 17 00:00:00 2001 From: Sacheendra Talluri Date: Tue, 24 Jan 2017 13:15:57 +0100 Subject: makefile builds directly from sqlite source --- .gitignore | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index ca9bdab5..8673dfad 100644 --- a/.gitignore +++ b/.gitignore @@ -14,4 +14,9 @@ Simulator/Release Testing/x64 Testing/Debug -Testing/LastCoverageResults.log \ No newline at end of file +Testing/LastCoverageResults.log + +*.o +Simulator/simulator +*.user +Simulator/external/ \ No newline at end of file -- cgit v1.2.3 From f1077d6b35a156b3f8b30e8739cf95e8c5088868 Mon Sep 17 00:00:00 2001 From: Georgios Andreadis Date: Wed, 25 Jan 2017 22:00:27 +0100 Subject: Update .gitignore for WebStorm setup --- .gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 28aa7add..49684fa2 100644 --- a/.gitignore +++ b/.gitignore @@ -11,4 +11,7 @@ src/scripts/.baseDir.ts typings/ # Yarn lockfile -yarn.lock \ No newline at end of file +yarn.lock + +# WebStorm +.idea/ -- cgit v1.2.3 From 854413087e0603906c83c908dd6331d49eb73dd1 Mon Sep 17 00:00:00 2001 From: leonoverweel Date: Mon, 27 Feb 2017 01:14:33 +0100 Subject: Ignore *.json in .gitignore --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 7abc763b..e7a8a360 100644 --- a/.gitignore +++ b/.gitignore @@ -11,4 +11,4 @@ _mailinglist .tox .cache/ .idea/ -config/ +*.json -- cgit v1.2.3 From 4a81d583245c78226414bd1341cf828dea09f87f Mon Sep 17 00:00:00 2001 From: leonoverweel Date: Sat, 1 Apr 2017 16:16:25 +0200 Subject: Only ignore config.json, not *.json --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index e7a8a360..14b2f25e 100644 --- a/.gitignore +++ b/.gitignore @@ -11,4 +11,4 @@ _mailinglist .tox .cache/ .idea/ -*.json +config.json -- cgit v1.2.3 From 80c33f5303e2c083841933de4338f7e5d15de972 Mon Sep 17 00:00:00 2001 From: Georgios Andreadis Date: Mon, 3 Apr 2017 09:20:59 +0200 Subject: Factor out hardcoded SERVER_BASE_URL --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 49684fa2..11181e8c 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,6 @@ yarn.lock # WebStorm .idea/ + +# Standard config file +config.json -- cgit v1.2.3 From c94d0c347fdbd8acc774df4ac17617a3f63e4507 Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Sun, 9 Jul 2017 23:48:06 +0200 Subject: Delete old codebase This change removes version 1 of the OpenDC simulator codebase as it will be replaced by a complete rewrite in the Kotlin language. --- .gitignore | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .gitignore (limited to '.gitignore') diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 8673dfad..00000000 --- a/.gitignore +++ /dev/null @@ -1,22 +0,0 @@ -.vs -x64 -Simulator.sdf -Simulator.v11.suo -Simulator.VC.db -Simulator.VC.VC.db -Simulator.VC.VC.opendb -Debug - -Simulator/x64 -Simulator/*.db -Simulator/docs -Simulator/Release - -Testing/x64 -Testing/Debug -Testing/LastCoverageResults.log - -*.o -Simulator/simulator -*.user -Simulator/external/ \ No newline at end of file -- cgit v1.2.3 From 44b5f9d5b190893d0b17a12a5ad2156705c05607 Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Sun, 9 Jul 2017 23:56:41 +0200 Subject: Add .gitignore for Kotlin This change adds a .gitignore to the repository tailored to the Kotlin language. --- .gitignore | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 .gitignore (limited to '.gitignore') diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..9da9d7eb --- /dev/null +++ b/.gitignore @@ -0,0 +1,57 @@ +### Java +# Compiled class file +*.class + +# Log file +*.log + +# BlueJ files +*.ctxt + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files +*.jar +*.war +*.ear +*.zip +*.tar.gz +*.rar + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* + +### Gradle +.gradle +build/ + +# Ignore Gradle GUI config +gradle-app.setting + +# Cache of project +.gradletasknamecache + +### IntelliJ IDEA +# Ignore .idea folder +.idea + +## File-based project format: +*.iml + +## Plugin-specific files: + +# IntelliJ +/out/ + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties -- cgit v1.2.3 From 777cb36dfb130af38fe095de6140b4a08883570d Mon Sep 17 00:00:00 2001 From: Sacheendra Talluri Date: Wed, 9 Aug 2017 00:20:54 +0200 Subject: Migrate to MariaDB --- .gitignore | 1 + 1 file changed, 1 insertion(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 14b2f25e..fef0da65 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ _mailinglist .cache/ .idea/ config.json +test.json -- cgit v1.2.3 From 2e8df509bb2fc513b7f793d51c6a85cf6bbe62ca Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Mon, 4 Sep 2017 12:55:45 +0200 Subject: Ignore /out/ directory generated by IntelliJ This change adds the out directory generated by IntelliJ to the .gitignore list. --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 9da9d7eb..8f666b9a 100644 --- a/.gitignore +++ b/.gitignore @@ -42,7 +42,7 @@ gradle-app.setting ## Plugin-specific files: # IntelliJ -/out/ +*/out/ # mpeltonen/sbt-idea plugin .idea_modules/ -- cgit v1.2.3 From 909e951165b1bf3289c7add031b9cebef94191ef Mon Sep 17 00:00:00 2001 From: Georgios Andreadis Date: Sat, 23 Sep 2017 09:57:26 +0200 Subject: Remove .gitignore --- .gitignore | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .gitignore (limited to '.gitignore') diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 11181e8c..00000000 --- a/.gitignore +++ /dev/null @@ -1,20 +0,0 @@ -# NPM dependencies -node_modules/ - -# Generated assets -build/ - -# TypeScript specific file -src/scripts/.baseDir.ts - -# TypeScript definitions -typings/ - -# Yarn lockfile -yarn.lock - -# WebStorm -.idea/ - -# Standard config file -config.json -- cgit v1.2.3 From b32c5c06ee844072a760f776e5f37f7c32c97c8f Mon Sep 17 00:00:00 2001 From: Georgios Andreadis Date: Fri, 22 Sep 2017 15:05:50 +0200 Subject: Update metadata and docs --- .gitignore | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .gitignore (limited to '.gitignore') diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..8d7ac584 --- /dev/null +++ b/.gitignore @@ -0,0 +1,28 @@ +# Dependencies +/node_modules + +# Testing +/coverage + +# Production +/build + +# Misc. +.DS_Store +.env.local +.env.development.local +.env.test.local +.env.production.local + +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# IntelliJ IDEA +/.idea + +# Yarn +yarn.lock + +# Sass output +*.css -- cgit v1.2.3 From 320ca19c49c4ddbedbd95ffdd481994892f263ff Mon Sep 17 00:00:00 2001 From: Georgios Andreadis Date: Fri, 22 Sep 2017 20:31:26 +0200 Subject: Use env variables for logging and oauth control --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 8d7ac584..db036d85 100644 --- a/.gitignore +++ b/.gitignore @@ -24,5 +24,8 @@ yarn-error.log* # Yarn yarn.lock +# Environment variables +.env + # Sass output *.css -- cgit v1.2.3 From 96edd4eee73269199d7cdd6fd1f0ec4907863cb4 Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Thu, 28 Sep 2017 17:16:06 +0200 Subject: Update .gitignore to include gradle-wrapper.jar This change updates the .gitignore to include the gradle-wrapper in the repository. --- .gitignore | 109 ++++++++++++++++++++++++++++++++++++++++++------------------- 1 file changed, 76 insertions(+), 33 deletions(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 8f666b9a..2cc67507 100644 --- a/.gitignore +++ b/.gitignore @@ -1,48 +1,41 @@ -### Java -# Compiled class file -*.class - -# Log file -*.log - -# BlueJ files -*.ctxt - -# Mobile Tools for Java (J2ME) -.mtj.tmp/ - -# Package Files -*.jar -*.war -*.ear -*.zip -*.tar.gz -*.rar - # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml hs_err_pid* +### JetBrains +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 -### Gradle -.gradle -build/ +# User-specific stuff: +.idea/workspace.xml +.idea/tasks.xml +.idea/dictionaries +.idea/vcs.xml +.idea/jsLibraryMappings.xml -# Ignore Gradle GUI config -gradle-app.setting +# Sensitive or high-churn files: +.idea/dataSources.ids +.idea/dataSources.xml +.idea/dataSources.local.xml +.idea/sqlDataSources.xml +.idea/dynamic.xml +.idea/uiDesigner.xml -# Cache of project -.gradletasknamecache +# Gradle: +.idea/gradle.xml +.idea/libraries -### IntelliJ IDEA -# Ignore .idea folder -.idea +# Mongo Explorer plugin: +.idea/mongoSettings.xml ## File-based project format: -*.iml +*.iws ## Plugin-specific files: # IntelliJ -*/out/ +/out/ +.idea/ +*/out +*.iml # mpeltonen/sbt-idea plugin .idea_modules/ @@ -55,3 +48,53 @@ com_crashlytics_export_strings.xml crashlytics.properties crashlytics-build.properties fabric.properties + +# Swap files +*.swp* + +### Eclipse +.metadata +bin/ +tmp/ +*.tmp +*.bak +*.swp +*~.nib +local.properties +.settings/ +.loadpath +.recommenders + +# Eclipse Core +.project + +# External tool builders +.externalToolBuilders/ + +# Locally stored "Eclipse launch configurations" +*.launch + +# JDT-specific (Eclipse Java Development Tools) +.classpath + +# Java annotation processor (APT) +.factorypath + +# Code Recommenders +.recommenders/ + +### Gradle +.gradle +build/ + +# Ignore Gradle GUI config +gradle-app.setting + +# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored) +!gradle/wrapper/gradle-wrapper.jar + +# Cache of project +.gradletasknamecache + +# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898 +# gradle/wrapper/gradle-wrapper.properties -- cgit v1.2.3 From 4ccc0ca058f88610980ccc31e4fda726a57037e2 Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Mon, 12 Nov 2018 21:29:38 +0100 Subject: bug: Fix React invariant error due to dependency mismatch This change fixes an issue with React crashing due to an invariant error that was caused by a dependency mismatch between React and react-konva. I have included the Yarn lock file in the repository to prevent these issues from happening in the future and keeping the installation deterministic. Additionally, I have updated react-konva and konva to the latest version to be compatible with the targeted React release. Fixes #63 --- .gitignore | 3 --- 1 file changed, 3 deletions(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index db036d85..415295d9 100644 --- a/.gitignore +++ b/.gitignore @@ -21,9 +21,6 @@ yarn-error.log* # IntelliJ IDEA /.idea -# Yarn -yarn.lock - # Environment variables .env -- cgit v1.2.3 From ae23970faa77c89408a4e98cb9259fb53e222bd3 Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Wed, 15 Apr 2020 03:02:16 +0200 Subject: perf: Convert output format to parquet --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 2cc67507..4ec6f778 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,9 @@ # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml hs_err_pid* + +# data +data/ + ### JetBrains # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 -- cgit v1.2.3 From 90fae26aa4bd0e0eb3272ff6e6524060e9004fbb Mon Sep 17 00:00:00 2001 From: Georgios Andreadis Date: Mon, 29 Jun 2020 15:47:09 +0200 Subject: Prepare frontend repository for monorepo This change prepares the frontend Git repository for the monorepo residing at https://github.com/atlarge-research.com/opendc. To accomodate for this, we move all files into a frontend subdirectory. --- .gitignore | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .gitignore (limited to '.gitignore') diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 415295d9..00000000 --- a/.gitignore +++ /dev/null @@ -1,28 +0,0 @@ -# Dependencies -/node_modules - -# Testing -/coverage - -# Production -/build - -# Misc. -.DS_Store -.env.local -.env.development.local -.env.test.local -.env.production.local - -npm-debug.log* -yarn-debug.log* -yarn-error.log* - -# IntelliJ IDEA -/.idea - -# Environment variables -.env - -# Sass output -*.css -- cgit v1.2.3 From 46b06fb446e79c390c01953d31d700b8e73da24d Mon Sep 17 00:00:00 2001 From: Georgios Andreadis Date: Mon, 29 Jun 2020 16:04:57 +0200 Subject: Prepare simulator repository for monorepo This change prepares the simulator Git repository for the monorepo residing at https://github.com/atlarge-research.com/opendc. To accomodate for this, we move all files into a simulator subdirectory. --- .gitignore | 104 ------------------------------------------------------------- 1 file changed, 104 deletions(-) delete mode 100644 .gitignore (limited to '.gitignore') diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 4ec6f778..00000000 --- a/.gitignore +++ /dev/null @@ -1,104 +0,0 @@ -# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml -hs_err_pid* - -# data -data/ - -### JetBrains -# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm -# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 - -# User-specific stuff: -.idea/workspace.xml -.idea/tasks.xml -.idea/dictionaries -.idea/vcs.xml -.idea/jsLibraryMappings.xml - -# Sensitive or high-churn files: -.idea/dataSources.ids -.idea/dataSources.xml -.idea/dataSources.local.xml -.idea/sqlDataSources.xml -.idea/dynamic.xml -.idea/uiDesigner.xml - -# Gradle: -.idea/gradle.xml -.idea/libraries - -# Mongo Explorer plugin: -.idea/mongoSettings.xml - -## File-based project format: -*.iws - -## Plugin-specific files: - -# IntelliJ -/out/ -.idea/ -*/out -*.iml - -# mpeltonen/sbt-idea plugin -.idea_modules/ - -# JIRA plugin -atlassian-ide-plugin.xml - -# Crashlytics plugin (for Android Studio and IntelliJ) -com_crashlytics_export_strings.xml -crashlytics.properties -crashlytics-build.properties -fabric.properties - -# Swap files -*.swp* - -### Eclipse -.metadata -bin/ -tmp/ -*.tmp -*.bak -*.swp -*~.nib -local.properties -.settings/ -.loadpath -.recommenders - -# Eclipse Core -.project - -# External tool builders -.externalToolBuilders/ - -# Locally stored "Eclipse launch configurations" -*.launch - -# JDT-specific (Eclipse Java Development Tools) -.classpath - -# Java annotation processor (APT) -.factorypath - -# Code Recommenders -.recommenders/ - -### Gradle -.gradle -build/ - -# Ignore Gradle GUI config -gradle-app.setting - -# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored) -!gradle/wrapper/gradle-wrapper.jar - -# Cache of project -.gradletasknamecache - -# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898 -# gradle/wrapper/gradle-wrapper.properties -- cgit v1.2.3 From 4f9a40abdc7836345113c047f27fcc96800cb3f5 Mon Sep 17 00:00:00 2001 From: Georgios Andreadis Date: Mon, 29 Jun 2020 16:05:23 +0200 Subject: Prepare web-server repository for monorepo This change prepares the web-server Git repository for the monorepo residing at https://github.com/atlarge-research.com/opendc. To accomodate for this, we move all files into a web-server subdirectory. --- .gitignore | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 .gitignore (limited to '.gitignore') diff --git a/.gitignore b/.gitignore deleted file mode 100644 index fef0da65..00000000 --- a/.gitignore +++ /dev/null @@ -1,15 +0,0 @@ -.DS_Store -*.pyc -*.pyo -venv -venv* -dist -build -*.egg -*.egg-info -_mailinglist -.tox -.cache/ -.idea/ -config.json -test.json -- cgit v1.2.3