Welcome to your new helloWorld project and to the internet computer development community. By default, creating a new project adds this README and some template files to your project directory. You can edit these template files to customize your project and to include your own code to speed up the development cycle.
To get started, you might want to explore the project directory structure and the default configuration file. Working with this project in your development environment will not affect any production deployment or identity tokens.
To learn more before you start working with helloWorld, see the following documentation available online:
- Quick Start
- SDK Developer Tools
- Motoko Programming Language Guide
- Motoko Language Quick Reference
- JavaScript API Reference
If you want to start working on your project right away, you might want to try the following commands:
cd helloWorld/
dfx help
dfx config --helpIf you want to test your project locally, you can use the following commands:
# Starts the replica, running in the background
dfx start --background
# Deploys your canisters to the replica and generates your candid interface
dfx deployOnce the job completes, your application will be available at http://localhost:8000?canisterId={asset_canister_id}.
Additionally, if you are making frontend changes, you can start a development server with
npm startWhich will start a server at http://localhost:8080, proxying API requests to the replica at port 8000.
If you are hosting frontend code somewhere without using DFX, you may need to make one of the following adjustments to ensure your project does not fetch the root key in production:
- set
NODE_ENVtoproductionif you are using Webpack - use your own preferred method to replace
process.env.NODE_ENVin the autogenerated declarations - Write your own
createActorconstructor
-
sudo dfx canister --network=ic install --all -m upgrade
-
sudo dfx deploy --no-wallet --network ic
-
sudo dfx build --network ic
-
sudo dfx canister --network=ic install controllerCanister -m reinstall
sudo dfx deploy
sudo dfx canister call microblog post "("first xxx")"
sudo dfx canister call microblog posts "()"
sudo dfx canister call microblog post "("second xxx")"
sudo dfx canister call microblog posts "()"
sudo dfx canister id microblog2
sudo dfx canister id microblog1
sudo dfx canister id microblog
sudo dfx canister --network ic call microblog2 follow "(principal "$(sudo dfx canister --network ic id microblog)")"
sudo dfx canister call microblog2 follows "()"
sudo dfx canister call microblog2 timeline "()"
sudo dfx canister --network ic call microblog2 follow "(principal "$(sudo dfx canister --network ic id microblog)")"
sudo dfx canister --network ic call microblog post "("lllll xxx")"
sudo dfx canister --network ic call microblog post "("lwowo xxx")"
sudo dfx canister --network ic call microblog2 timeline "(1647146409052325083)"
1646912687773318971
sudo dfx canister call microblog create_canister '()'
// --with-cycles=2000000000000
sudo dfx deploy --network=ic --argument '( vec {principal "exp33-minxe-lqmzo-dh3fa-ostfz-tkaue-kn7ow-6cioh-gzfw7-px7yn-pqe"; principal "ndb4h-h6tuq-2iudh-j3opo-trbbe-vljdk-7bxgi-t5eyp-744ga-6eqv6-2ae"; principal "lzf3n-nlh22-cyptu-56v52-klerd-chdxu-t62na-viscs-oqr2d-kyl44-rqe"; principal "lliu2-c55t3-dpy27-3vi2e-yu4nq-5midt-gmtd5-oi4t6-qlq63-5lguj-pqe"; principal "oykqy-sztuq-v7b52-4nlyp-iarsl-u7xny-3prca-fi746-qkcvw-ckdqd-6qe" })'
sudo dfx canister --network=ic install controllerCanister -m reinstall --argument '( vec {principal "exp33-minxe-lqmzo-dh3fa-ostfz-tkaue-kn7ow-6cioh-gzfw7-px7yn-pqe"; principal "ndb4h-h6tuq-2iudh-j3opo-trbbe-vljdk-7bxgi-t5eyp-744ga-6eqv6-2ae"; principal "lzf3n-nlh22-cyptu-56v52-klerd-chdxu-t62na-viscs-oqr2d-kyl44-rqe"; principal "lliu2-c55t3-dpy27-3vi2e-yu4nq-5midt-gmtd5-oi4t6-qlq63-5lguj-pqe"})'