Kadestery / The-FireWalls

Project for SOEN343, constructing a smart home simulator
1 stars 1 forks source link

The-FireWalls
├─ backend
│  ├─ app
│  │  ├─ config.py
│  │  ├─ crud.py
│  │  ├─ database.py
│  │  ├─ houseLayout.json
│  │  ├─ main.py
│  │  ├─ models.py
│  │  ├─ routes
│  │  │  ├─ authRoutes.py
│  │  │  ├─ houseRoutes.py
│  │  │  ├─ profileRoutes.py
│  │  │  ├─ __init__.py
│  │  │  └─ __pycache__
│  │  │     ├─ authRoutes.cpython-311.pyc
│  │  │     ├─ profileRoutes.cpython-311.pyc
│  │  │     └─ __init__.cpython-311.pyc
│  │  ├─ schemas.py
│  │  ├─ __init__.py
│  │  └─ __pycache__
│  │     ├─ config.cpython-311.pyc
│  │     ├─ crud.cpython-311.pyc
│  │     ├─ database.cpython-311.pyc
│  │     ├─ main.cpython-311.pyc
│  │     ├─ models.cpython-311.pyc
│  │     ├─ schemas.cpython-311.pyc
│  │     └─ __init__.cpython-311.pyc
│  ├─ Pipfile
│  ├─ Pipfile.lock
│  └─ __init__.py
├─ docker-compose.yml
├─ frontend
│  ├─ .eslintrc.cjs
│  ├─ index.html
│  ├─ package-lock.json
│  ├─ package.json
│  ├─ postcss.config.js
│  ├─ public
│  │  └─ vite.svg
│  ├─ README.md
│  ├─ src
│  │  ├─ actions
│  │  │  ├─ createProfileAction.js
│  │  │  ├─ loginFormAction.js
│  │  │  └─ signupFormAction.js
│  │  ├─ App.jsx
│  │  ├─ assets
│  │  ├─ generalComponents
│  │  │  ├─ PrivateRoute.jsx
│  │  │  └─ ProfilePicture.jsx
│  │  ├─ index.css
│  │  ├─ layouts
│  │  │  └─ RootLayout.jsx
│  │  ├─ loaders
│  │  │  └─ loadProfiles.js
│  │  ├─ main.jsx
│  │  └─ pages
│  │     ├─ about
│  │     │  └─ About.jsx
│  │     ├─ accounts
│  │     │  └─ Accounts.jsx
│  │     ├─ addProfile
│  │     │  └─ AddProfile.jsx
│  │     ├─ contact
│  │     │  └─ Contact.jsx
│  │     ├─ home
│  │     │  ├─ Home.jsx
│  │     │  └─ homeComponents
│  │     │     └─ SetupSimulation.jsx
│  │     └─ _auth_
│  │        ├─ authComponents
│  │        │  └─ AuthFormHeader.jsx
│  │        ├─ login
│  │        │  └─ Login.jsx
│  │        └─ signup
│  │           └─ Signup.jsx
│  ├─ tailwind.config.js
│  └─ vite.config.js
├─ README.md
└─ text.txt