Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
Igor Lilic committed Jul 6, 2021
0 parents commit 404f647
Show file tree
Hide file tree
Showing 12 changed files with 2,055 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .gitignore
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/
20 changes: 20 additions & 0 deletions README.md
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
```
34 changes: 34 additions & 0 deletions dfx.json
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
}
Loading

0 comments on commit 404f647

Please sign in to comment.