├── .dockerignore ├── .env.sample ├── .gitignore ├── Dockerfile ├── README.md ├── app.py ├── config.py ├── notes ├── Linux.txt ├── PHP.txt └── Réseaux .txt ├── questions ├── Linux.json ├── PHP.json └── Réseaux .json ├── requirements.txt └── utils ├── note_manager.py ├── question_generator.py └── stats_manager.py /.dockerignore: -------------------------------------------------------------------------------- 1 | venv 2 | -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamour-dx/NoteMaster/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamour-dx/NoteMaster/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamour-dx/NoteMaster/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamour-dx/NoteMaster/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamour-dx/NoteMaster/HEAD/app.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamour-dx/NoteMaster/HEAD/config.py -------------------------------------------------------------------------------- /notes/Linux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamour-dx/NoteMaster/HEAD/notes/Linux.txt -------------------------------------------------------------------------------- /notes/PHP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamour-dx/NoteMaster/HEAD/notes/PHP.txt -------------------------------------------------------------------------------- /notes/Réseaux .txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamour-dx/NoteMaster/HEAD/notes/Réseaux .txt -------------------------------------------------------------------------------- /questions/Linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamour-dx/NoteMaster/HEAD/questions/Linux.json -------------------------------------------------------------------------------- /questions/PHP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamour-dx/NoteMaster/HEAD/questions/PHP.json -------------------------------------------------------------------------------- /questions/Réseaux .json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamour-dx/NoteMaster/HEAD/questions/Réseaux .json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamour-dx/NoteMaster/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/note_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamour-dx/NoteMaster/HEAD/utils/note_manager.py -------------------------------------------------------------------------------- /utils/question_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamour-dx/NoteMaster/HEAD/utils/question_generator.py -------------------------------------------------------------------------------- /utils/stats_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamour-dx/NoteMaster/HEAD/utils/stats_manager.py --------------------------------------------------------------------------------