-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix-data_types
- Loading branch information
Showing
545 changed files
with
47,526 additions
and
17,122 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"extends": ["plugin:@docusaurus/recommended"], | ||
"parserOptions": { | ||
"ecmaVersion": "latest" | ||
}, | ||
"plugins": ["react", "frontmatter"] | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,5 +4,3 @@ title: "Newsroom" | |
--- | ||
|
||
This is the blog of the Chemotion Repository. | ||
|
||
|
This file contains 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
This file contains 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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
--- | ||
id: architecture | ||
title: Application Architecture | ||
--- | ||
|
||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,25 @@ | ||
--- | ||
id: debugging | ||
title: Debugging | ||
--- | ||
|
||
## JavaScript | ||
|
||
You can use your browser's developer tools: | ||
|
||
<https://developer.mozilla.org/en-US/docs/Learn/Common_questions/What_are_browser_developer_tools> | ||
You can use your browser's [developer tools](https://developer.mozilla.org/en-US/docs/Learn/Common_questions/What_are_browser_developer_tools). | ||
|
||
## Ruby (Rails application) | ||
|
||
Below are two options for "live"-debugging Ruby code (i.e., while the application is running). | ||
|
||
### Pry | ||
|
||
Install [`pry`](https://github.com/pry/pry) and set `binding.pry` breakpoints in your Ruby code: | ||
<https://docs.gitlab.com/ee/development/pry_debugging.html>. Pry should work independently of your IDE. | ||
Install [`pry`](https://github.com/pry/pry) and set `binding.pry` breakpoints to [debug](https://docs.gitlab.com/ee/development/pry_debugging.html) your Ruby code. Pry should work independently of your IDE. | ||
|
||
### Visual Studio Code | ||
|
||
If you're using the Visual Studio Code IDE, you can use it's visual / GUI debugger. | ||
The configuration depends on your local setup, however, following these instructions should get you started fine: | ||
|
||
<https://andyv.me/til/debug-a-ruby-on-rails-server-using-vs-code/>. | ||
The configuration depends on your local setup, however, [these instructions](https://andyv.me/til/debug-a-ruby-on-rails-server-using-vs-code/) could help you get started. | ||
|
||
In case debugging doesn't work yet, have a look at the following resources to fine-tune your configuration: | ||
|
||
<https://github.com/rubyide/vscode-ruby/blob/main/docs/debugger.md> | ||
<https://github.com/Microsoft/vscode-recipes/blob/2174a750102a76142378ea08dbbb4a576dc6d1d5/debugging-Ruby-on-Rails/README.md> | ||
0. [Rubyide Debugger](https://github.com/rubyide/vscode-ruby/blob/main/docs/debugger.md) | ||
1. [VSCode recipe for Ruby on Rails](https://github.com/Microsoft/vscode-recipes/blob/2174a750102a76142378ea08dbbb4a576dc6d1d5/debugging-Ruby-on-Rails/README.md) |
Oops, something went wrong.