diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..1ea2b58
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,34 @@
+# ---> Go
+# Binaries for programs and plugins
+*.exe
+*.exe~
+*.dll
+*.so
+*.dylib
+
+# Test binary, built with `go test -c`
+*.test
+
+# Output of the go coverage tool, specifically when used with LiteIDE
+*.out
+
+# Dependency directories (remove the comment below to include it)
+# vendor/
+
+.buildpath
+.hgignore.swp
+.project
+.orig
+.swp
+.idea/
+.settings/
+.vscode/
+testdata/
+vender/
+bin/
+*/.DS_Store
+main
+.vscode
+__debug_bin
+history/
+release/
\ No newline at end of file
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..5181a4b
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2024 ClarkQAQ
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
\ No newline at end of file
diff --git a/README.en.md b/README.en.md
new file mode 100644
index 0000000..143ec28
--- /dev/null
+++ b/README.en.md
@@ -0,0 +1,38 @@
+
+
Restory
+
+ Re (store + (hi) story) VSCode History Recovery Tool
+
+
+
+> Are you using VSCode and accidentally deleted your folder? Restory can help you recover it!
+
+### Principle
+
+This is a very simple tool. Restory scans the file modification history files of VSCode to obtain information, and rebuilds the directory structure and file content at the location you specify.
+Unfortunately, you cannot use Restory to recover files that were not modified through VSCode, as VSCode does not generate the corresponding modification history files.
+
+### Usage
+
+Download the binary file of `restory` for your platform from the Release page and run it.
+
+For example, on the Linux platform:
+
+```bash
+$ curl -L -o ./restory_linux_amd64 https://github.com/ClarkQAQ/restory/releases/latest/download/restory_linux_amd64
+$ chmod +x ./restory_linux_amd64
+$ ./restory_linux_amd64 ~/.config/Code/User/History /tmp/code-history
+```
+
+The VSCode history folder is usually located at `~/.config/Code/User/History` on Linux and `C:\Users\[your username]\AppData\Local\Code\User\History` on Windows.
+
+[Windows Download](https://github.com/ClarkQAQ/restory/releases/latest/download/restory_windows_amd64.exe)
+[Linux Download](https://github.com/ClarkQAQ/restory/releases/latest/download/restory_linux_amd64)
+[MacOS Download](https://github.com/ClarkQAQ/restory/releases/latest/download/restory_darwin_amd64)
+
+### Finally
+
+Please remember to back up your important files regularly! Upload them to Git timely!
+This tool might help you once, but it cannot guarantee to help you every time...
+
+---
\ No newline at end of file
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..d15e9b7
--- /dev/null
+++ b/README.md
@@ -0,0 +1,41 @@
+
+
Restory
+
+ Re (store + (hi) story) VSCode 历史记录文件恢复工具
+
+ VSCode History Recovery Tool
+