├── .gitignore ├── Procfile ├── README.md ├── animation.gif ├── config.py ├── fbapp ├── __init__.py ├── models.py ├── static │ ├── css │ │ ├── bootstrap │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ ├── custom.css │ │ ├── freelancer-theme.css │ │ └── freelancer-theme.min.css │ ├── fonts │ │ ├── Arcon-Regular.otf │ │ └── glyphicons │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ ├── img │ │ └── profile.png │ ├── js │ │ ├── bootstrap │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ │ ├── freelancer-theme.js │ │ ├── freelancer-theme.min.js │ │ └── jquery │ │ │ ├── jquery.js │ │ │ └── jquery.min.js │ └── tmp │ │ ├── 1933433063608371.jpg │ │ ├── cover_111823112767411.jpg │ │ └── sample.jpg ├── templates │ ├── base.html │ ├── card.html │ ├── index.html │ └── result.html ├── tests │ ├── __init__.py │ ├── app_test.db │ ├── config.py │ └── test_user_takes_the_test.py ├── utils.py └── views.py ├── requirements.txt └── run.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/.gitignore -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/README.md -------------------------------------------------------------------------------- /animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/animation.gif -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/config.py -------------------------------------------------------------------------------- /fbapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/fbapp/__init__.py -------------------------------------------------------------------------------- /fbapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/fbapp/models.py -------------------------------------------------------------------------------- /fbapp/static/css/bootstrap/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/fbapp/static/css/bootstrap/bootstrap.css -------------------------------------------------------------------------------- /fbapp/static/css/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/fbapp/static/css/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /fbapp/static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/fbapp/static/css/custom.css -------------------------------------------------------------------------------- /fbapp/static/css/freelancer-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/fbapp/static/css/freelancer-theme.css -------------------------------------------------------------------------------- /fbapp/static/css/freelancer-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/fbapp/static/css/freelancer-theme.min.css -------------------------------------------------------------------------------- /fbapp/static/fonts/Arcon-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/fbapp/static/fonts/Arcon-Regular.otf -------------------------------------------------------------------------------- /fbapp/static/fonts/glyphicons/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/fbapp/static/fonts/glyphicons/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fbapp/static/fonts/glyphicons/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/fbapp/static/fonts/glyphicons/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /fbapp/static/fonts/glyphicons/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/fbapp/static/fonts/glyphicons/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /fbapp/static/fonts/glyphicons/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/fbapp/static/fonts/glyphicons/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /fbapp/static/fonts/glyphicons/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/fbapp/static/fonts/glyphicons/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /fbapp/static/img/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/fbapp/static/img/profile.png -------------------------------------------------------------------------------- /fbapp/static/js/bootstrap/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/fbapp/static/js/bootstrap/bootstrap.js -------------------------------------------------------------------------------- /fbapp/static/js/bootstrap/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/fbapp/static/js/bootstrap/bootstrap.min.js -------------------------------------------------------------------------------- /fbapp/static/js/freelancer-theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/fbapp/static/js/freelancer-theme.js -------------------------------------------------------------------------------- /fbapp/static/js/freelancer-theme.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/fbapp/static/js/freelancer-theme.min.js -------------------------------------------------------------------------------- /fbapp/static/js/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/fbapp/static/js/jquery/jquery.js -------------------------------------------------------------------------------- /fbapp/static/js/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/fbapp/static/js/jquery/jquery.min.js -------------------------------------------------------------------------------- /fbapp/static/tmp/1933433063608371.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/fbapp/static/tmp/1933433063608371.jpg -------------------------------------------------------------------------------- /fbapp/static/tmp/cover_111823112767411.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/fbapp/static/tmp/cover_111823112767411.jpg -------------------------------------------------------------------------------- /fbapp/static/tmp/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/fbapp/static/tmp/sample.jpg -------------------------------------------------------------------------------- /fbapp/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/fbapp/templates/base.html -------------------------------------------------------------------------------- /fbapp/templates/card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/fbapp/templates/card.html -------------------------------------------------------------------------------- /fbapp/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/fbapp/templates/index.html -------------------------------------------------------------------------------- /fbapp/templates/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/fbapp/templates/result.html -------------------------------------------------------------------------------- /fbapp/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fbapp/tests/app_test.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/fbapp/tests/app_test.db -------------------------------------------------------------------------------- /fbapp/tests/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/fbapp/tests/config.py -------------------------------------------------------------------------------- /fbapp/tests/test_user_takes_the_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/fbapp/tests/test_user_takes_the_test.py -------------------------------------------------------------------------------- /fbapp/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/fbapp/utils.py -------------------------------------------------------------------------------- /fbapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/fbapp/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oc-courses/concevez_un_site_avec_flask/HEAD/run.py --------------------------------------------------------------------------------