Skip to content

Commit

Permalink
Merge pull request #1 from PotLock/init-repo
Browse files Browse the repository at this point in the history
Added contract
  • Loading branch information
Megha-Dev-19 authored Jul 1, 2024
2 parents 4b38887 + b276ed6 commit 13540a2
Show file tree
Hide file tree
Showing 56 changed files with 14,798 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"image": "ghcr.io/near/near-devcontainer:latest",
"customizations": {
"vscode": {
"extensions": [
"dtsvet.vscode-wasm",
"rust-lang.rust-analyzer",
"github.vscode-github-actions"
]
}
},
"postCreateCommand": "./.devcontainer/post-create.sh"
}
6 changes: 6 additions & 0 deletions .devcontainer/post-create.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/bash

(cd discussions && cargo near build)
(cd community && cargo near build)
(cd community-factory && cargo near build)
cargo near build
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
res/near_ideas.wasm binary
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.idea
neardev/
target/
res/*.wasm
.DS_Store
Loading

0 comments on commit 13540a2

Please sign in to comment.