Skip to content

Commit 9f76628

Browse files
committed
feat: rename Auralyze API to Mixtapelabs API across the codebase
1 parent 9ee200b commit 9f76628

28 files changed

Lines changed: 69 additions & 69 deletions

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PORT=4001
2-
DATABASE_URL="postgresql://username:password@localhost:5432/auralyze"
2+
DATABASE_URL="postgresql://username:password@localhost:5432/mixtapelabs"
33
JWT_SECRET=your-secret-key-here-min-32-chars-long
44

55
CORS_ORIGIN=http://localhost:3000

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Default maintainers for the proprietary API service
22

3-
* @auralyze/maintainers
3+
* @mixtapelabs/maintainers

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: 'Bug report'
3-
about: 'Report a problem with Auralyze API'
3+
about: 'Report a problem with Mixtapelabs API'
44
labels: [bug]
55
title: '[Bug]: '
66
---
@@ -11,7 +11,7 @@ Describe the unexpected behavior.
1111

1212
## API Version / Environment
1313

14-
- @auralyze/api version:
14+
- @mixtapelabs/api version:
1515
- Node.js version:
1616
- Database / Prisma provider:
1717

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: 'Feature request'
3-
about: 'Suggest an enhancement for Auralyze API'
3+
about: 'Suggest an enhancement for Mixtapelabs API'
44
labels: [enhancement]
55
title: '[Feature]: '
66
---

.github/copilot-instructions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copilot Instructions
22

3-
Auralyze API is an Express service that fronts `@auralyze/engine`. Keep the service modular, dependency-injected, and ready for containerized deployment.
3+
Mixtapelabs API is an Express service that fronts `@mixtapelabs/engine`. Keep the service modular, dependency-injected, and ready for containerized deployment.
44

55
## Architecture snapshot
66

@@ -20,7 +20,7 @@ Auralyze API is an Express service that fronts `@auralyze/engine`. Keep the serv
2020

2121
## Implementation conventions
2222

23-
- Do not import `@auralyze/engine` directly inside controllers; route through services so dependencies remain mockable.
23+
- Do not import `@mixtapelabs/engine` directly inside controllers; route through services so dependencies remain mockable.
2424
- Validate request payloads with Zod schemas in `src/controllers/session-controller.ts` before invoking services.
2525
- Keep env access centralized in `src/config/env.ts`. Never read `process.env` throughout the codebase.
2626
- Avoid long middleware chains; prefer dedicated functions within `src/middleware/` and register them in `src/routes/index.ts`.
@@ -29,7 +29,7 @@ Auralyze API is an Express service that fronts `@auralyze/engine`. Keep the serv
2929

3030
## External integrations
3131

32-
- `@auralyze/engine` orchestrates LangGraph analysis; treat it as an injected dependency.
32+
- `@mixtapelabs/engine` orchestrates LangGraph analysis; treat it as an injected dependency.
3333
- OpenAI usage is encapsulated by the engine. The API only passes through `EngineState` payloads.
3434
- Prisma migrations must accompany schema changes; run `npx prisma migrate dev --name <msg>` and commit the generated migration.
3535

.github/pull_request_template.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Summary
44

5-
Describe the core change and why it matters for the Auralyze API.
5+
Describe the core change and why it matters for the Mixtapelabs API.
66

77
## Changes
88

@@ -22,4 +22,4 @@ List new/updated endpoints, response contracts, or dependency requirements. If t
2222

2323
## Engine / Client Considerations
2424

25-
Call out any updates that touch `@auralyze/engine`, Prisma schema, or injected clients so downstream services can adapt.
25+
Call out any updates that touch `@mixtapelabs/engine`, Prisma schema, or injected clients so downstream services can adapt.

.npmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
@auralyze:registry=https://npm.pkg.github.com
1+
@mixtapelabs:registry=https://npm.pkg.github.com
22
//npm.pkg.github.com/:_authToken=${NPM_TOKEN}
33
always-auth=true

CODE_OF_CONDUCT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Our Pledge
44

5-
We pledge to make participation in Auralyze API a harassment-free experience for everyone, regardless of background, expertise, or role.
5+
We pledge to make participation in Mixtapelabs API a harassment-free experience for everyone, regardless of background, expertise, or role.
66

77
## Our Standards
88

@@ -28,7 +28,7 @@ This Code of Conduct applies within all project spaces, including GitHub, Slack,
2828

2929
## Enforcement
3030

31-
Report violations privately to the engineering leadership team or via the `#auralyze-security` Slack channel. All complaints will be reviewed promptly and confidentially.
31+
Report violations privately to the engineering leadership team or via the `#mixtapelabs-security` Slack channel. All complaints will be reviewed promptly and confidentially.
3232

3333
## Attribution
3434

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Contributing to Auralyze API
1+
# Contributing to Mixtapelabs API
22

3-
This repository houses proprietary code for the Auralyze Express service. Please keep all discussions and reviews within approved internal channels.
3+
This repository houses proprietary code for the Mixtapelabs Express service. Please keep all discussions and reviews within approved internal channels.
44

55
## Getting Started
66

@@ -31,7 +31,7 @@ All pull requests must be rebased on `main` (or `develop` when applicable) and p
3131
1. Reference the ticket/issue ID in the branch or PR description.
3232
2. Document user-facing API changes in the PR template.
3333
3. Update README/Runbooks when introducing new endpoints, env vars, or dependencies.
34-
4. Request review from `@auralyze/maintainers`; at least one approval is required before merge.
34+
4. Request review from `@mixtapelabs/maintainers`; at least one approval is required before merge.
3535

3636
## Testing Checklist
3737

LICENSE

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
Auralyze API Proprietary License
1+
Mixtapelabs API Proprietary License
22
================================
33

4-
Copyright (c) 2025 Auralyze. All rights reserved.
4+
Copyright (c) 2025 Mixtapelabs. All rights reserved.
55

66
This software, including all associated source code, documentation, binaries, and assets
7-
(collectively, the "Software"), is proprietary to Auralyze.
7+
(collectively, the "Software"), is proprietary to Mixtapelabs.
88

99
Permission is not granted to copy, distribute, sublicense, modify, merge, publish, or
1010
create derivative works of the Software, in whole or in part, unless you have received
11-
prior written authorization from Auralyze. Use of the Software is restricted to the
12-
purpose and scope explicitly approved in writing by Auralyze. Any unauthorized use is
11+
prior written authorization from Mixtapelabs. Use of the Software is restricted to the
12+
purpose and scope explicitly approved in writing by Mixtapelabs. Any unauthorized use is
1313
strictly prohibited.
1414

1515
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
@@ -19,4 +19,4 @@ BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN ACTION OF CO
1919
TORT, OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THE USE
2020
OR OTHER DEALINGS IN THE SOFTWARE.
2121

22-
For licensing inquiries, please contact Auralyze.
22+
For licensing inquiries, please contact Mixtapelabs.

0 commit comments

Comments
 (0)