-
-
Save samlinux/ce3f9bea707af9cbeb1185c71557da5e to your computer and use it in GitHub Desktop.
Angular meets Internet Computer
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
touch dfx.json | |
{ | |
"canisters": { | |
"backend": { | |
"main": "src/backend/main.mo", | |
"type": "motoko" | |
}, | |
"frontend": { | |
"dependencies": [ | |
"backend" | |
], | |
"frontend": { | |
"entrypoint": "dist/index.html" | |
}, | |
"source": [ | |
"dist/" | |
], | |
"type": "assets" | |
} | |
}, | |
"defaults": { | |
"build": { | |
"args": "", | |
"packtool": "" | |
} | |
}, | |
"dfx": "0.8.4", | |
"networks": { | |
"local": { | |
"bind": "127.0.0.1:8000", | |
"type": "ephemeral" | |
} | |
}, | |
"version": 1 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment