transcendence/
├── backend/
│ ├── Dockerfile
│ ├── manage.py
│ ├── requirements.txt
│ ├── transcendence/
│ │ ├── __init__.py
│ │ ├── settings.py
│ │ ├── urls.py
│ │ └── wsgi.py
│ ├── authentication/ (app)
│ ├── game/ (app)
│ └── chat/ (app)
└── frontend/
├── Dockerfile
├── package.json
├── public/
│ └── index.html
├── src/
│ ├── App.js
│ ├── index.js
│ ├── authentication/
│ │ ├── Auth.js
│ │ └── Auth.css
│ ├── game/
│ │ ├── Game.js
│ │ └── Game.css
│ └── chat/
│ ├── Chat.js
│ └── Chat.css
└── tests/
├── App.test.js
├── authentication/
│ └── Auth.test.js
├── game/
│ └── Game.test.js
└── chat/
└── Chat.test.js