File tree Expand file tree Collapse file tree 1 file changed +10
-12
lines changed Expand file tree Collapse file tree 1 file changed +10
-12
lines changed Original file line number Diff line number Diff line change @@ -15,21 +15,19 @@ I built it fast using GitHub Copilot and Codespaces to streamline my workflow—
15
15
- ** AI Boost** : GitHub Copilot suggested 30% of the code—lines like [ example snippet, e.g., ` transferToken() ` ] —saving me hours.
16
16
- ** Setup** : Spun up a Codespace with a custom dev container (see ` .devcontainer/devcontainer.json ` ) to keep it portable and reproducible.
17
17
18
- ### Dev Container Config
19
- Here’s how I set up my environment:
20
- ``` json
18
+
21
19
{
22
20
"name": "WorldpayDeFi Dev Env",
21
+ "image": "mcr.microsoft.com/devcontainers/base:0-ubuntu-20.04",
23
22
"customizations": {
24
23
"vscode": {
25
- "extensions" : [" GitHub.copilot" ]
24
+ "extensions": [
25
+ "GitHub.copilot",
26
+ "rust-lang.rust-analyzer" // For Solana Rust development
27
+ ]
26
28
}
27
- }
29
+ },
30
+ "postCreateCommand": "sh -c \" $(curl -sSfL https://release.solana.com/stable/install)\ " && rustup default stable",
31
+ "forwardPorts": [ 8899] , // Solana local validator default port
32
+ "remoteUser": "vscode"
28
33
}
29
- Starts a Codespace with Copilot pre-installed—ready to code in 2 minutes flat.
30
- See It In Action
31
- Code: Dive into payment_contract.[coming soon]
32
- Commits: Check my history—[e.g., “Added fee optimizer, 3/13/25”] shows I’m active.
33
- Next Steps: Adding retailer UI and testing on [coming soon]
34
- Why It Matters
35
- This is my take on fixing payments with DeFi—cheaper, faster, and decentralized. Perfect fit for [Solana foundation]
You can’t perform that action at this time.
0 commit comments