Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
koverholt committed Oct 17, 2023
1 parent 6f00e3f commit 8198e16
Show file tree
Hide file tree
Showing 4 changed files with 114 additions and 0 deletions.
15 changes: 15 additions & 0 deletions conversation-design/.firebaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"projects": {
"default": "conversation-design-docs"
},
"targets": {
"conversation-design-docs": {
"hosting": {
"conversation-design": [
"conversation-design"
]
}
}
},
"etags": {}
}
68 changes: 68 additions & 0 deletions conversation-design/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
firebase-debug.log*
firebase-debug.*.log*

# Firebase cache
.firebase/

# Firebase config

# Uncomment this if you'd like others to create their own Firebase project.
# For a team working on the same Firebase project(s), it is recommended to leave
# it commented so all members can deploy to the same project(s) in .firebaserc.
# .firebaserc

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env

site/
11 changes: 11 additions & 0 deletions conversation-design/firebase.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"hosting": {
"public": "site",
"target": "conversation-design",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
]
}
}
20 changes: 20 additions & 0 deletions conversation-design/mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
site_name: Conversation Design
theme:
name: material
features:
- navigation.sections
nav:
- Overview:
- index.md
- what-is-conversation-design.md
- learn-about-conversation.md
- Conversation design process:
- how-do-i-get-started.md
- create-a-persona.md
- design-for-the-long-tail.md
- gather-requirements.md
- help-users-find-your-action.md
- is-conversation-the-right-fit.md
- scale-your-design.md
- test-and-iterate.md
- write-sample-dialogs.md
- Style guide:
- language.md
- capitalization-and-punctuation.md

0 comments on commit 8198e16

Please sign in to comment.