Skip to content

Commit

Permalink
Merge pull request #1 from SkywardAI/feat/cite
Browse files Browse the repository at this point in the history
Add citation files and configuration file for VSCode
  • Loading branch information
Aisuko authored Dec 9, 2024
2 parents f05553d + 2cd538e commit 41bf1c8
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python Debugger: FastAPI",
"type": "debugpy",
"request": "launch",
"cwd": "${workspaceFolder}/chimera",
"module": "uvicorn",
"env": {
"PYTHONPATH": "${workspaceFolder}/chimera"
},
"args": [
"src.main:app",
"--reload"
],
"jinja": true
}
]
}
12 changes: 12 additions & 0 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
cff-version: 1.2.0
message: "If you use this software, please cite it as below."
title: "Your Software Title"
version: 1.0.0
authors:
- family-names: "Li"
given-names: "Bowen"
orcid: "https://orcid.org/0009-0007-6470-5607"
- family-names: "Zhang"
given-names: "Chuan"
date-released: 2024-12-09
url: "https://github.com/SkywardAI/chimera"

0 comments on commit 41bf1c8

Please sign in to comment.