Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add Project Management Node sample #264

Merged
Show file tree
Hide file tree
Changes from 12 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
16 changes: 16 additions & 0 deletions node/project-management-app/.gcloudignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# This file specifies files that are *not* uploaded to Google Cloud
# using gcloud. It follows the same syntax as .gitignore, with the addition of
# "#!include" directives (which insert the entries of the given .gitignore-style
# file at that point).
#
# For more information, run:
# $ gcloud topic gcloudignore
#
.gcloudignore
# If you would like to upload your .git directory, .gitignore file or files
# from your .gitignore file, remove the corresponding line
# below:
.git
.gitignore

node_modules
20 changes: 20 additions & 0 deletions node/project-management-app/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Google Chat Project Management app

This code sample shows how to make a Google Chat app that a team can use to
manage projects in real time.

The Chat app is implemented as a Google Cloud Function using a Node.js runtime,
which responds to
[interaction events](https://developers.google.com/chat/api/guides/message-formats/events)
from Google Chat.

It uses [Vertex AI](https://cloud.google.com/vertex-ai) to help teams write user
stories (which represent features of a software system from the point of view of
a user for the team to develop) and persists the stories in a
[Firestore](https://firebase.google.com/docs/firestore) database.
PierrickVoulet marked this conversation as resolved.
Show resolved Hide resolved

## Tutorial

For detailed instructions to deploy and run this sample, follow the tutorial
[Manage projects with Google Chat, Vertex AI, and Cloud Firestore](https://developers.google.com/chat/tutorial-project-management)
PierrickVoulet marked this conversation as resolved.
Show resolved Hide resolved
in the Google Chat developer documentation.
Loading
Loading