Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,13 @@ canisters/
# dfx temporary files
.dfx/

# dfx distribution files
dist/
canister_ids.json
src/declarations/


# frontend code
node_modules/


2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Before you build, deploy, and run the Magnify application, verify the following:
To download and install the supported version of the DFINITY Canister SDK, run the following command:

```bash
DFX_VERSION=0.5.8 sh -ci "$(curl -fsSL https://sdk.dfinity.org/install.sh)"
DFX_VERSION=0.8.4 sh -ci "$(curl -fsSL https://sdk.dfinity.org/install.sh)"
```

## Clone the Magnify repository
Expand Down
29 changes: 15 additions & 14 deletions dfx.json
Original file line number Diff line number Diff line change
@@ -1,34 +1,35 @@
{
"canisters": {
"magnify": {
"main": "src/magnify/main.mo",
"Magnify": {
"main": "src/Magnify/main.mo",
"type": "motoko"
},
"magnify_assets": {
"Magnify_assets": {
"dependencies": [
"magnify"
"Magnify"
],
"frontend": {
"entrypoint": "src/magnify_assets/public/index.js",
"output": "canisters/magnify_assets/assets"
"entrypoint": "src/Magnify_assets/src/index.html"
},
"source": [
"src/magnify_assets/assets"
"src/Magnify_assets/assets",
"dist/Magnify_assets/"
],
"type": "assets"
}
},
"defaults": {
"build": {
"output": "canisters/",
"args": "",
"packtool": ""
},
"start": {
"address": "127.0.0.1",
"port": 8000,
"serve_root": "canisters/magnify_assets/assets"
}
},
"dfx": "0.5.8",
"dfx": "0.9.3",
"networks": {
"local": {
"bind": "127.0.0.1:8000",
"type": "ephemeral"
}
},
"version": 1
}
Loading