Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -121,3 +121,5 @@ go.work.sum
# Token deployment cache files
tests-functional/snt_addresses.json*

# Codex AI (chatGPT)
.codex
18 changes: 13 additions & 5 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
{
"go.testTags": "gowaku_skip_migrations,gowaku_no_rln",
"cSpell.words": [
"unmarshalling"
],
"cSpell.words": ["unmarshalling"],
"gopls": {
"formatting.local": "github.com/status-im/status-go"
"formatting.local": "github.com/status-im/status-go",
"build.buildFlags": ["-tags=gowaku_skip_migrations,gowaku_no_rln"]
},
// format all files on save if a formatter is available
"editor.formatOnSave": true,
// I use "goimports" instead of "gofmt"
// use "goimports" instead of "gofmt"
// because it does the same thing but also formats imports
"go.formatTool": "goimports",
"go.toolsEnvVars": {
"CGO_ENABLED": "1"
},
"go.testEnvVars": {
"CGO_CFLAGS": "-I${workspaceFolder}/../nim-sds/library",
"CGO_LDFLAGS": "-L${workspaceFolder}/../nim-sds/build -lsds -Wl,-rpath,${workspaceFolder}/../nim-sds/build"
},
"go.buildFlags": ["-tags=gowaku_skip_migrations,gowaku_no_rln"],
"go.testFlags": ["-tags=gowaku_skip_migrations,gowaku_no_rln"]
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ A comprehensive list of `status-go` functionality can be found in [Brief overvie

# Docs

- [How to Build](./building.md)
- [How to Build](docs/building.md)
- [How to Contribute](CONTRIBUTING.md)
- [How to Release](docs/RELEASING.md)
- [How to run status-go as HTTP server](/cmd/status-backend/README.md)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
-- Rename magnetlink columns to archive_link for clarity
ALTER TABLE communities_archive_info RENAME COLUMN magnetlink_clock TO archive_link_clock;
ALTER TABLE communities_archive_info RENAME COLUMN last_magnetlink_uri TO last_archive_link;
Loading
Loading