Compare commits

..

3 Commits

13 changed files with 131 additions and 7 deletions

5
.gitignore vendored
View File

@ -103,3 +103,8 @@ seq-data/
.claude/
build.sh
buildx*.sh
# .NET
**/[Bb]in/
**/[Oo]bj/
**/*.nupkg

View File

@ -289,12 +289,13 @@ Bitip/
│ ├── vite.config.ts # Vite configuration
│ ├── tsconfig.json # TypeScript configuration
│ └── package.json # Frontend dependencies
├── content/ # Content files (Overview.json, ReleaseNotes.json)
├── docs/ # Documentation (PRD, tech stack)
├── .env # Environment variables (not in git)
├── .env.example # Example environment file
├── Dockerfile # Production Docker image
├── docker-compose.yml # Production deployment
└── package.json # Root package configuration
├── package.json # Root package configuration
└── README.md
```
### Available Scripts

26
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "bitip",
"version": "1.0.4",
"version": "1.1.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "bitip",
"version": "1.0.4",
"version": "1.1.0",
"license": "MIT",
"workspaces": [
"src/backend",
@ -6652,7 +6652,7 @@
},
"src/backend": {
"name": "bitip-backend",
"version": "1.0.4",
"version": "1.1.0",
"dependencies": {
"@maxmind/geoip2-node": "^6.1.0",
"compression": "^1.7.4",
@ -7141,7 +7141,7 @@
},
"src/frontend": {
"name": "bitip-frontend",
"version": "1.0.4",
"version": "1.1.0",
"dependencies": {
"@flare/utiliyo": "^1.2.2",
"axios": "^1.12.2",
@ -7154,6 +7154,7 @@
},
"devDependencies": {
"@types/leaflet": "^1.9.18",
"@types/node": "^24.6.2",
"@types/react": "^19.1.16",
"@types/react-dom": "^19.1.9",
"@typescript-eslint/eslint-plugin": "^8.45.0",
@ -7256,6 +7257,16 @@
"react-dom": "^19.0.0"
}
},
"src/frontend/node_modules/@types/node": {
"version": "24.6.2",
"resolved": "https://registry.npmjs.org/@types/node/-/node-24.6.2.tgz",
"integrity": "sha512-d2L25Y4j+W3ZlNAeMKcy7yDsK425ibcAOO2t7aPTz6gNMH0z2GThtwENCDc0d/Pw9wgyRqE5Px1wkV7naz8ang==",
"dev": true,
"license": "MIT",
"dependencies": {
"undici-types": "~7.13.0"
}
},
"src/frontend/node_modules/@types/react": {
"version": "19.1.16",
"resolved": "https://registry.npmjs.org/@types/react/-/react-19.1.16.tgz",
@ -7684,6 +7695,13 @@
"peerDependencies": {
"typescript": ">=4.8.4"
}
},
"src/frontend/node_modules/undici-types": {
"version": "7.13.0",
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.13.0.tgz",
"integrity": "sha512-Ov2Rr9Sx+fRgagJ5AX0qvItZG/JKKoBRAVITs1zk7IqZGTJUwgUr7qoYBpWwakpWilTZFM98rG/AFRocu10iIQ==",
"dev": true,
"license": "MIT"
}
}
}

View File

@ -23,6 +23,10 @@ export default [
module: 'readonly',
require: 'readonly',
exports: 'readonly',
setTimeout: 'readonly',
clearTimeout: 'readonly',
setInterval: 'readonly',
clearInterval: 'readonly',
},
},
plugins: {
@ -42,9 +46,10 @@ export default [
],
'@typescript-eslint/explicit-function-return-type': 'warn',
'@typescript-eslint/no-explicit-any': 'warn',
'no-undef': 'off', // TypeScript handles this better
},
},
{
ignores: ['dist/**', 'node_modules/**', '**/*.js'],
},
];
];

30
src/clients/dotnet/.gitignore vendored Normal file
View File

@ -0,0 +1,30 @@
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
# User-specific files
*.rsuser
*.suo
*.user
*.userosscache
*.sln.docstates
# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
[Aa][Rr][Mm]/
[Aa][Rr][Mm]64/
bld/
[Bb]in/
[Oo]bj/
[Ll]og/
# Visual Studio cache/options directory
.vs/
# NuGet Packages
*.nupkg
*.snupkg

View File

@ -0,0 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

View File

@ -0,0 +1,7 @@
namespace Bitip.Client.Tests
{
public class Class1
{
}
}

View File

@ -0,0 +1,31 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.14.36429.23
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bitip.Client", "Bitip.Client\Bitip.Client.csproj", "{C4AC72BE-14C9-4D96-9A88-BC69DD5707FD}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bitip.Client.Tests", "Bitip.Client.Tests\Bitip.Client.Tests.csproj", "{FA3B984B-4ADE-4B0A-BB6F-FD287A73B266}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{C4AC72BE-14C9-4D96-9A88-BC69DD5707FD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C4AC72BE-14C9-4D96-9A88-BC69DD5707FD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C4AC72BE-14C9-4D96-9A88-BC69DD5707FD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C4AC72BE-14C9-4D96-9A88-BC69DD5707FD}.Release|Any CPU.Build.0 = Release|Any CPU
{FA3B984B-4ADE-4B0A-BB6F-FD287A73B266}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FA3B984B-4ADE-4B0A-BB6F-FD287A73B266}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FA3B984B-4ADE-4B0A-BB6F-FD287A73B266}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FA3B984B-4ADE-4B0A-BB6F-FD287A73B266}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {C9E930B5-D456-4B6F-98C1-95A4D1FA49B5}
EndGlobalSection
EndGlobal

View File

@ -0,0 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

View File

@ -0,0 +1,7 @@
namespace Bitip.Client
{
public class Class1
{
}
}

View File

@ -0,0 +1 @@
# In development

View File

@ -22,6 +22,7 @@ export default [
},
globals: {
...globals.browser,
...globals.node,
},
},
plugins: {
@ -42,6 +43,7 @@ export default [
'@typescript-eslint/no-unused-vars': 'error',
'@typescript-eslint/explicit-function-return-type': 'warn',
'@typescript-eslint/no-explicit-any': 'warn',
'no-undef': 'off', // TypeScript handles this better
},
},
{

View File

@ -23,6 +23,7 @@
},
"devDependencies": {
"@types/leaflet": "^1.9.18",
"@types/node": "^24.6.2",
"@types/react": "^19.1.16",
"@types/react-dom": "^19.1.9",
"@typescript-eslint/eslint-plugin": "^8.45.0",