-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Igor Lilic
committed
Jul 6, 2021
0 parents
commit 404f647
Showing
12 changed files
with
2,055 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Various IDEs and Editors | ||
.vscode/ | ||
.idea/ | ||
**/*~ | ||
|
||
# Mac OSX temporary files | ||
.DS_Store | ||
**/.DS_Store | ||
|
||
# dfx temporary files | ||
.dfx/ | ||
|
||
# frontend code | ||
node_modules/ | ||
dist/ |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# community_docs | ||
|
||
Welcome to your new community_docs 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 community_docs, see the following documentation available online: | ||
|
||
- [Quick Start](https://sdk.dfinity.org/docs/quickstart/quickstart-intro.html) | ||
- [SDK Developer Tools](https://sdk.dfinity.org/docs/developers-guide/sdk-guide.html) | ||
- [Motoko Programming Language Guide](https://sdk.dfinity.org/docs/language-guide/motoko.html) | ||
- [Motoko Language Quick Reference](https://sdk.dfinity.org/docs/language-guide/language-manual.html) | ||
|
||
If you want to start working on your project right away, you might want to try the following commands: | ||
|
||
```bash | ||
cd community_docs/ | ||
dfx help | ||
dfx config --help | ||
``` |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"canisters": { | ||
"community_docs": { | ||
"main": "src/community_docs/main.mo", | ||
"type": "motoko" | ||
}, | ||
"community_docs_assets": { | ||
"dependencies": [ | ||
"community_docs" | ||
], | ||
"frontend": { | ||
"entrypoint": "src/community_docs_assets/src/index.html" | ||
}, | ||
"source": [ | ||
"src/community_docs_assets/assets", | ||
"dist/community_docs_assets/" | ||
], | ||
"type": "assets" | ||
} | ||
}, | ||
"defaults": { | ||
"build": { | ||
"packtool": "" | ||
} | ||
}, | ||
"dfx": "0.7.2", | ||
"networks": { | ||
"local": { | ||
"bind": "127.0.0.1:8000", | ||
"type": "ephemeral" | ||
} | ||
}, | ||
"version": 1 | ||
} |
Oops, something went wrong.