Skip to content

Instantly share code, notes, and snippets.

@samlinux
Last active March 17, 2022 09:03
Show Gist options
  • Save samlinux/ce3f9bea707af9cbeb1185c71557da5e to your computer and use it in GitHub Desktop.
Save samlinux/ce3f9bea707af9cbeb1185c71557da5e to your computer and use it in GitHub Desktop.
Angular meets Internet Computer
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