Skip to content

Commit

Permalink
Scrapping this..
Browse files Browse the repository at this point in the history
  • Loading branch information
donaldzou committed Nov 25, 2024
1 parent fe7c52f commit b128481
Show file tree
Hide file tree
Showing 21 changed files with 2,758 additions and 736 deletions.
5 changes: 4 additions & 1 deletion src/Utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,7 @@ def ValidateIPAddress(ip):
break
else:
result = None
return result
return result

def StringToBoolean(value: str) -> bool:
return value.lower() in ("yes", "true", "t", "1", 1)
727 changes: 727 additions & 0 deletions src/WireguardConfiguration.py

Large diffs are not rendered by default.

1,451 changes: 726 additions & 725 deletions src/dashboard.py

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions src/static/app/capacitor.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import type { CapacitorConfig } from '@capacitor/cli';

const config: CapacitorConfig = {
appId: 'com.donaldzou.wgdashboard',
appName: 'WGDashboard',
webDir: 'dist'
};

export default config;
13 changes: 13 additions & 0 deletions src/static/app/ios/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
App/build
App/Pods
App/output
App/App/public
DerivedData
xcuserdata

# Cordova plugins for Capacitor
capacitor-cordova-ios-plugins

# Generated Config files
App/App/capacitor.config.json
App/App/config.xml
Loading

0 comments on commit b128481

Please sign in to comment.