Compare commits

..

No commits in common. "11bd4fbe185203a713a1adbdab1c3e304805e526" and "b25c8d8f91f96efc4ea24a772e8d12cdf1b2efaa" have entirely different histories.

13 changed files with 7 additions and 131 deletions

5
.gitignore vendored
View File

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

View File

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

26
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "bitip", "name": "bitip",
"version": "1.1.0", "version": "1.0.4",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "bitip", "name": "bitip",
"version": "1.1.0", "version": "1.0.4",
"license": "MIT", "license": "MIT",
"workspaces": [ "workspaces": [
"src/backend", "src/backend",
@ -6652,7 +6652,7 @@
}, },
"src/backend": { "src/backend": {
"name": "bitip-backend", "name": "bitip-backend",
"version": "1.1.0", "version": "1.0.4",
"dependencies": { "dependencies": {
"@maxmind/geoip2-node": "^6.1.0", "@maxmind/geoip2-node": "^6.1.0",
"compression": "^1.7.4", "compression": "^1.7.4",
@ -7141,7 +7141,7 @@
}, },
"src/frontend": { "src/frontend": {
"name": "bitip-frontend", "name": "bitip-frontend",
"version": "1.1.0", "version": "1.0.4",
"dependencies": { "dependencies": {
"@flare/utiliyo": "^1.2.2", "@flare/utiliyo": "^1.2.2",
"axios": "^1.12.2", "axios": "^1.12.2",
@ -7154,7 +7154,6 @@
}, },
"devDependencies": { "devDependencies": {
"@types/leaflet": "^1.9.18", "@types/leaflet": "^1.9.18",
"@types/node": "^24.6.2",
"@types/react": "^19.1.16", "@types/react": "^19.1.16",
"@types/react-dom": "^19.1.9", "@types/react-dom": "^19.1.9",
"@typescript-eslint/eslint-plugin": "^8.45.0", "@typescript-eslint/eslint-plugin": "^8.45.0",
@ -7257,16 +7256,6 @@
"react-dom": "^19.0.0" "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": { "src/frontend/node_modules/@types/react": {
"version": "19.1.16", "version": "19.1.16",
"resolved": "https://registry.npmjs.org/@types/react/-/react-19.1.16.tgz", "resolved": "https://registry.npmjs.org/@types/react/-/react-19.1.16.tgz",
@ -7695,13 +7684,6 @@
"peerDependencies": { "peerDependencies": {
"typescript": ">=4.8.4" "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,10 +23,6 @@ export default [
module: 'readonly', module: 'readonly',
require: 'readonly', require: 'readonly',
exports: 'readonly', exports: 'readonly',
setTimeout: 'readonly',
clearTimeout: 'readonly',
setInterval: 'readonly',
clearInterval: 'readonly',
}, },
}, },
plugins: { plugins: {
@ -46,7 +42,6 @@ export default [
], ],
'@typescript-eslint/explicit-function-return-type': 'warn', '@typescript-eslint/explicit-function-return-type': 'warn',
'@typescript-eslint/no-explicit-any': 'warn', '@typescript-eslint/no-explicit-any': 'warn',
'no-undef': 'off', // TypeScript handles this better
}, },
}, },
{ {

View File

@ -1,30 +0,0 @@
## 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

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

View File

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

View File

@ -1,31 +0,0 @@

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

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

View File

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

View File

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

View File

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

View File

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