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

WorkFlow: Infrastructure & Code #1

Merged
merged 10 commits into from
Mar 5, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
cohere app
kinfinity committed Mar 5, 2024
commit c19d8f29c1cf0227c07fd64cb6112889538f5c67
44 changes: 44 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -32,3 +32,47 @@ override.tf.json
# Ignore CLI configuration files
.terraformrc
terraform.rc


# Node.js
node_modules/

# Next.js
.next/
out/

# Logs
logs
*.log

# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Editor directories and files
.vscode/
.idea/

# Environment variables
.env
.env.local
.env.development.local
.env.test.local
.env.production.local

# Next.js cache files
.cache/

# yarn
yarn-error.log
.pnp/
.yarn/
yarn.lock

# npm
npm-debug.log*
30 changes: 30 additions & 0 deletions app/cohere-app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# local env files
.env.local
.env.development.local
.env.test.local
.env.production.local
1 change: 1 addition & 0 deletions app/cohere-app/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This is a starter template for [Learn Next.js](https://nextjs.org/learn).
Loading