Skip to content

Commit

Permalink
Merge pull request #127 from inlang/rfc-001-architecture
Browse files Browse the repository at this point in the history
rfc-001-core-architecture
  • Loading branch information
samuelstroschein authored Nov 12, 2022
2 parents 62e9e26 + 1172088 commit 0fecaaa
Show file tree
Hide file tree
Showing 10 changed files with 575 additions and 9 deletions.
5 changes: 1 addition & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,4 @@ node_modules

# Local Netlify folder
.netlify

# SvelteKit output

.svelte-kit
.vscode/settings.json
560 changes: 560 additions & 0 deletions rfcs/001-core-architecture.md

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions rfcs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
**What does this directory contain?**

This directory contains RFCs related to code in this repository.

**What is an RFC?**

RFC stands for _request for comments_. RFCs are written proposals that seek feedback and encourage discussion about technical decisions, their tradeoffs, and implications.
Binary file added rfcs/assets/001-editor.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added rfcs/assets/001-git-based-architecture.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added rfcs/assets/001-ide-extension.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions source-code/git-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
"types": "./dist/api/index.d.ts",
"import": "./dist/api/index.js"
},
"./result": {
"types": "./dist/auth/index.d.ts",
"import": "./dist/auth/index.js"
},
"./fs": {
"types": "./dist/fs/index.d.ts",
"import": "./dist/fs/index.js"
},
"./host": {
"types": "./dist/auth/index.d.ts",
"import": "./dist/auth/index.js"
}
},
"files": [
Expand Down
1 change: 0 additions & 1 deletion source-code/git-sdk/src/auth/README.md

This file was deleted.

3 changes: 3 additions & 0 deletions source-code/git-sdk/src/host/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Git (hosting) providers (hosts) add features on top of git like pull or merge requests and handle authorization differently. The git-sdk/host provides one API that deals with the API differences between hosting providers.

Read more [/rfcs/001-core-architecture.md](/rfcs/001-core-architecture.md)
File renamed without changes.

0 comments on commit 0fecaaa

Please sign in to comment.