-
Notifications
You must be signed in to change notification settings - Fork 32
Adds Docker support for easy project setup. #79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Nihallllll
wants to merge
2
commits into
StabilityNexus:main
Choose a base branch
from
Nihallllll:feat/add-docker-support
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,20 @@ | ||
| node_modules | ||
| **/node_modules | ||
| npm-debug.log* | ||
| frontend/dist | ||
| frontend/build | ||
| frontend/.env | ||
| frontend/.env.local | ||
| contracts/out | ||
| contracts/cache | ||
| contracts/broadcast | ||
| contracts/.env | ||
| .git | ||
| .gitignore | ||
| .gitmodules | ||
| *.md | ||
| docs/ | ||
| .vscode | ||
| .idea | ||
| .DS_Store | ||
| Thumbs.db |
This file contains hidden or 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 contains hidden or 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,11 @@ | ||
| { | ||
| "lib/forge-std": { | ||
| "rev": "3b20d60d14b343ee4f908cb8079495c07f5e8981" | ||
| }, | ||
| "lib\\openzeppelin-contracts": { | ||
| "tag": { | ||
| "name": "v5.5.0", | ||
| "rev": "fcbae5394ae8ad52d8e580a3477db99814b9d565" | ||
| } | ||
| } | ||
| } |
This file contains hidden or 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
Submodule openzeppelin-contracts
added at
fcbae5
This file contains hidden or 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 hidden or 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 hidden or 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,32 @@ | ||
| version: '3.8' | ||
|
|
||
| services: | ||
| frontend: | ||
| build: | ||
| context: ./frontend | ||
| dockerfile: Dockerfile | ||
| container_name: chainvoice-frontend | ||
| ports: | ||
| - "5173:5173" | ||
| volumes: | ||
| - ./frontend:/app | ||
| - /app/node_modules | ||
| env_file: | ||
| - ./frontend/.env | ||
| restart: unless-stopped | ||
| networks: | ||
| - chainvoice-network | ||
|
|
||
| blockchain: | ||
| image: ghcr.io/foundry-rs/foundry:latest | ||
| container_name: chainvoice-blockchain | ||
| command: anvil --host 0.0.0.0 --chain-id 31337 --accounts 10 --balance 10000 | ||
| ports: | ||
| - "8545:8545" | ||
| restart: unless-stopped | ||
| networks: | ||
| - chainvoice-network | ||
|
|
||
| networks: | ||
| chainvoice-network: | ||
| driver: bridge |
This file contains hidden or 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,30 @@ | ||
| node_modules | ||
| npm-debug.log* | ||
| yarn-debug.log* | ||
| yarn-error.log* | ||
| dist | ||
| build | ||
| .next | ||
| out | ||
| .env | ||
| .env.local | ||
| .env.*.local | ||
| .git | ||
| .gitignore | ||
| .gitattributes | ||
| .vscode | ||
| .idea | ||
| *.swp | ||
| *.swo | ||
| *~ | ||
| .DS_Store | ||
| Thumbs.db | ||
| coverage | ||
| .nyc_output | ||
| *.test.js | ||
| *.spec.js | ||
| README.md | ||
| *.md | ||
| Dockerfile | ||
| docker-compose.yml | ||
| .dockerignore |
This file contains hidden or 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,13 @@ | ||
| FROM node:20-alpine | ||
|
|
||
| WORKDIR /app | ||
|
|
||
| COPY package.json package-lock.json ./ | ||
|
|
||
| RUN npm ci --legacy-peer-deps | ||
|
|
||
| COPY . . | ||
|
|
||
| EXPOSE 5173 | ||
|
|
||
| CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0"] |
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: StabilityNexus/Chainvoice
Length of output: 1045
🏁 Script executed:
Repository: StabilityNexus/Chainvoice
Length of output: 858
🏁 Script executed:
Repository: StabilityNexus/Chainvoice
Length of output: 1074
Submodule must be pinned to a specific commit or stable release tag.
The OpenZeppelin Contracts submodule in
.gitmodulesis not pinned to any specific commit or release tag. Currently, it will point to themainbranch, which is unsuitable for production use and breaks build reproducibility.Update
.gitmodulesto include a pinned commit:Example fix
Or set a specific commit in git after initialization. Verify with a stable release tag (e.g.,
v5.0.0) rather than main.The foundry remapping in
contracts/foundry.tomlis correctly configured as'@openzeppelin/=lib/openzeppelin-contracts/'.🤖 Prompt for AI Agents