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
7 changes: 4 additions & 3 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ AUTH_DISABLED_FOR_DEV=false
DATABASE_URL="postgresql://user:password@host:port/db"
SERVER_ACTIONS_ALLOWED_ORIGINS=*
STANDARD_TIER_BILLING_CYCLE="yearly"
STANDARD_TIER_CREDITS=8000
STANDARD_TIER_MONTHLY_PRICE=41
STANDARD_TIER_PRICE_ID="price_standard_41_yearly"
STANDARD_TIER_CREDITS=500
STANDARD_TIER_MONTHLY_PRICE=500
STANDARD_TIER_PRICE_ID="price_standard_500_yearly"
ENABLE_SHARE=true
66 changes: 43 additions & 23 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,39 @@
# Dependency directories
node_modules/
# dependencies
/node_modules
/.pnp
.pnp.js
.yarn/install-state.gz
.bun/

# Build outputs
.next/
dist/
build/
out/
# testing
/coverage
/playwright-report/
/test-results/

# Environment variables
# next.js
/.next/
/out/

# production
/build
/dist

# misc
.DS_Store
*.pem
*.swp
*.swo

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
dev_server.log
server.log
dev.log
*.log

# local env files
.env
.env.local
.env.development.local
Expand All @@ -19,26 +44,21 @@ out/
# IDE/Editor
.vscode/
.idea/
*.swp
*.swo
.DS_Store

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

# Lock files
bun.lockb

# Testing
playwright-report/
test-results/
coverage/

# Supabase local CLI state
supabase/.temp/

# Misc
.vercel/
# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts

# AlphaEarth Embeddings - Sensitive Files
gcp_credentials.json
**/gcp_credentials.json
aef_index.csv
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@



[**Pricing**]  |  [**Land**](https://wwww.queue.cx)  |  [**X**](https://x.com/tryqcx)
[**Pricing**](https://buy.stripe.com/14A3cv7K72TR3go14Nasg02)  |  [**Land**](https://wwww.queue.cx)  |  [**X**](https://x.com/tryqcx)

<a href="https://www.producthunt.com/products/qcx?embed=true&utm_source=badge-featured&utm_medium=badge&utm_source=badge-qcx" target="_blank"><img src="https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=1035588&theme=light&t=1762583679476" alt="QCX - Artificial&#0032;General&#0032;Intelligence&#0046; | Product Hunt" style="width: 250px; height: 54px;" width="250" height="54" /></a>
</div>
Expand Down
Loading