Umzug Gitea
This commit is contained in:
23
.continue/agents/new-config.yaml
Normal file
23
.continue/agents/new-config.yaml
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
# This is an example configuration file
|
||||||
|
# To learn more, see the full config.yaml reference: https://docs.continue.dev/reference
|
||||||
|
|
||||||
|
name: Example Config
|
||||||
|
version: 1.0.0
|
||||||
|
schema: v1
|
||||||
|
|
||||||
|
# Define which models can be used
|
||||||
|
# https://docs.continue.dev/customization/models
|
||||||
|
models:
|
||||||
|
- name: my gpt-5
|
||||||
|
provider: openai
|
||||||
|
model: gpt-5
|
||||||
|
apiKey: YOUR_OPENAI_API_KEY_HERE
|
||||||
|
- uses: ollama/qwen2.5-coder-7b
|
||||||
|
- uses: anthropic/claude-4-sonnet
|
||||||
|
with:
|
||||||
|
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
|
||||||
|
|
||||||
|
# MCP Servers that Continue can access
|
||||||
|
# https://docs.continue.dev/customization/mcp-tools
|
||||||
|
mcpServers:
|
||||||
|
- uses: anthropic/memory-mcp
|
||||||
1580
package-lock.json
generated
1580
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -40,8 +40,8 @@
|
|||||||
"tslib": "^2.3.0"
|
"tslib": "^2.3.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@angular/build": "^20.3.21",
|
"@angular/build": "^21.2.3",
|
||||||
"@angular/cli": "^21.1.4",
|
"@angular/cli": "^21.2.3",
|
||||||
"@angular/compiler-cli": "^21.2.5",
|
"@angular/compiler-cli": "^21.2.5",
|
||||||
"@types/express": "^5.0.1",
|
"@types/express": "^5.0.1",
|
||||||
"@types/node": "^20.19.37",
|
"@types/node": "^20.19.37",
|
||||||
|
|||||||
@@ -0,0 +1 @@
|
|||||||
|
<p>pricing works!</p>
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { PricingComponent } from './pricing.component';
|
||||||
|
|
||||||
|
describe('PricingComponent', () => {
|
||||||
|
let component: PricingComponent;
|
||||||
|
let fixture: ComponentFixture<PricingComponent>;
|
||||||
|
|
||||||
|
beforeEach(async () => {
|
||||||
|
await TestBed.configureTestingModule({
|
||||||
|
imports: [PricingComponent]
|
||||||
|
})
|
||||||
|
.compileComponents();
|
||||||
|
|
||||||
|
fixture = TestBed.createComponent(PricingComponent);
|
||||||
|
component = fixture.componentInstance;
|
||||||
|
await fixture.whenStable();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should create', () => {
|
||||||
|
expect(component).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
import { Component } from '@angular/core';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-pricing',
|
||||||
|
imports: [],
|
||||||
|
templateUrl: './pricing.component.html',
|
||||||
|
styleUrl: './pricing.component.scss',
|
||||||
|
})
|
||||||
|
export class PricingComponent {
|
||||||
|
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user