Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
12 changes: 12 additions & 0 deletions coediting-example/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Beefree SDK Credentials
# Get these from your Beefree SDK Developer Console
# https://developers.beefree.io

BEEFREE_CLIENT_ID=your_client_id_here
BEEFREE_CLIENT_SECRET=your_client_secret_here
BEEFREE_API_KEY=your_sdk_api_key_here # The jwt can be used instead, optional
VITE_BEEFREE_AUTH_PROXY_URL=http://localhost:3004/auth/token
VITE_BACKEND_URL=http://localhost:3004

# Server Configuration
PORT=3004
100 changes: 100 additions & 0 deletions coediting-example/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

# Dependencies
node_modules/
.pnp
.pnp.js

# Testing
coverage/

# Production builds
dist/
build/

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

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

# Temporary files
*.tmp
*.temp

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

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# Next.js build output
.next

# Nuxt.js build / generate output
.nuxt
dist


# Temporary folders
tmp/
temp/

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

# Vite
.vite
1 change: 1 addition & 0 deletions coediting-example/.nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v22
Loading