security: add RBAC, HTTPS enforcement; add tests and CI pytest step

This commit is contained in:
TLimoges33
2025-08-28 17:29:16 +00:00
parent a2b8950d9a
commit f0c61de280
16 changed files with 271 additions and 198 deletions
+10 -10
View File
@@ -3,14 +3,14 @@ import Integrations from './Integrations'
import Guilds from './Guilds'
import Login from './Login'
export default function App(){
return (
<div style={{padding:20,fontFamily:'system-ui, sans-serif'}}>
<h1>LifeRPG Modern</h1>
<p>Welcome frontend scaffold. Connect to backend at <code>/api/v1</code>.</p>
<Login />
<Integrations />
<Guilds />
</div>
)
export default function App() {
return (
<div style={{ padding: 20, fontFamily: 'system-ui, sans-serif' }}>
<h1>LifeRPG Modern</h1>
<p>Welcome frontend scaffold. Connect to backend at <code>/api/v1</code>.</p>
<Login />
<Integrations />
<Guilds />
</div>
)
}