├── .dockerignore ├── .env.example ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.rst ├── CONTRIBUTING.rst ├── CONTRIBUTORS.txt ├── LICENSE ├── Procfile ├── README.rst ├── bootcamp ├── __init__.py ├── articles │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_models.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── contrib │ ├── __init__.py │ └── sites │ │ ├── __init__.py │ │ └── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_alter_domain_unique.py │ │ ├── 0003_set_site_domain_and_name.py │ │ └── __init__.py ├── helpers.py ├── messager │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── consumers.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── schema.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_models.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── news │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20200405_1227.py │ │ └── __init__.py │ ├── models.py │ ├── schema.py │ ├── templatetags │ │ ├── __init__.py │ │ └── urlize_target_blank.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_models.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── notifications │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── consumers.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_models.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── qa │ ├── __init__.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_models.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── search │ ├── __init__.py │ ├── apps.py │ ├── tests │ │ ├── __init__.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── static │ ├── css │ │ ├── bootcamp.css │ │ ├── creative.css │ │ ├── login.css │ │ ├── messager.css │ │ ├── news.css │ │ ├── notifications.css │ │ ├── qa.css │ │ ├── user_form.css │ │ ├── user_list.css │ │ ├── user_profile.css │ │ └── util.css │ ├── fonts │ │ ├── .gitkeep │ │ ├── Linearicons-Free-v1.0.0 │ │ │ ├── WebFont │ │ │ │ ├── Linearicons-Free.eot │ │ │ │ ├── Linearicons-Free.svg │ │ │ │ ├── Linearicons-Free.ttf │ │ │ │ ├── Linearicons-Free.woff │ │ │ │ └── Linearicons-Free.woff2 │ │ │ └── icon-font.min.css │ │ ├── font-awesome-4.7.0 │ │ │ ├── HELP-US-OUT.txt │ │ │ ├── css │ │ │ │ ├── font-awesome.css │ │ │ │ └── font-awesome.min.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── less │ │ │ │ ├── animated.less │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── core.less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── icons.less │ │ │ │ ├── larger.less │ │ │ │ ├── list.less │ │ │ │ ├── mixins.less │ │ │ │ ├── path.less │ │ │ │ ├── rotated-flipped.less │ │ │ │ ├── screen-reader.less │ │ │ │ ├── stacked.less │ │ │ │ └── variables.less │ │ │ └── scss │ │ │ │ ├── _animated.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── font-awesome.scss │ │ └── raleway │ │ │ ├── OFL.txt │ │ │ ├── Raleway-Black.ttf │ │ │ ├── Raleway-BlackItalic.ttf │ │ │ ├── Raleway-Bold.ttf │ │ │ ├── Raleway-BoldItalic.ttf │ │ │ ├── Raleway-ExtraBold.ttf │ │ │ ├── Raleway-ExtraBoldItalic.ttf │ │ │ ├── Raleway-ExtraLight.ttf │ │ │ ├── Raleway-ExtraLightItalic.ttf │ │ │ ├── Raleway-Italic.ttf │ │ │ ├── Raleway-Light.ttf │ │ │ ├── Raleway-LightItalic.ttf │ │ │ ├── Raleway-Medium.ttf │ │ │ ├── Raleway-MediumItalic.ttf │ │ │ ├── Raleway-Regular.ttf │ │ │ ├── Raleway-SemiBold.ttf │ │ │ ├── Raleway-SemiBoldItalic.ttf │ │ │ ├── Raleway-Thin.ttf │ │ │ └── Raleway-ThinItalic.ttf │ ├── img │ │ ├── Jcrop.gif │ │ ├── favicon.png │ │ ├── header.jpg │ │ ├── loading.gif │ │ └── user.png │ └── js │ │ ├── articles.js │ │ ├── bootcamp.js │ │ ├── infinite.min.js │ │ ├── jquery.waypoints.min.js │ │ ├── messager.js │ │ ├── news.js │ │ ├── qa.js │ │ └── websocketbridge.js ├── templates │ ├── 400.html │ ├── 403.html │ ├── 403_csrf.html │ ├── 404.html │ ├── 500.html │ ├── account │ │ ├── account_inactive.html │ │ ├── base.html │ │ ├── email.html │ │ ├── email_confirm.html │ │ ├── login.html │ │ ├── logout.html │ │ ├── password_change.html │ │ ├── password_reset.html │ │ ├── password_reset_done.html │ │ ├── password_reset_from_key.html │ │ ├── password_reset_from_key_done.html │ │ ├── password_set.html │ │ ├── signup.1.html │ │ ├── signup.html │ │ ├── signup_closed.html │ │ ├── verification_sent.html │ │ └── verified_email_required.html │ ├── articles │ │ ├── article_create.html │ │ ├── article_detail.html │ │ ├── article_list.html │ │ └── article_update.html │ ├── base.html │ ├── markdownx │ │ └── widget2.html │ ├── messager │ │ ├── message_list.html │ │ └── single_message.html │ ├── news │ │ ├── news_confirm_delete.html │ │ ├── news_form_modal.html │ │ ├── news_list.html │ │ ├── news_single.html │ │ ├── news_thread.html │ │ └── news_thread_modal.html │ ├── notifications │ │ ├── most_recent.html │ │ └── notification_list.html │ ├── pages │ │ ├── about.html │ │ └── home.html │ ├── qa │ │ ├── answer_form.html │ │ ├── answer_sample.html │ │ ├── question_detail.html │ │ ├── question_form.html │ │ ├── question_list.html │ │ └── question_sample.html │ ├── search │ │ └── search_results.html │ └── users │ │ ├── user_detail.html │ │ ├── user_form.html │ │ └── user_list.html └── users │ ├── __init__.py │ ├── adapters.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ └── __init__.py │ ├── models.py │ ├── schema.py │ ├── tests │ ├── __init__.py │ ├── test_admin.py │ ├── test_models.py │ ├── test_urls.py │ └── test_views.py │ ├── urls.py │ └── views.py ├── compose ├── local │ └── django │ │ ├── Dockerfile │ │ └── start.sh └── production │ ├── caddy │ ├── Caddyfile │ └── Dockerfile │ ├── django │ ├── Dockerfile │ └── entrypoint.sh │ └── postgres │ ├── Dockerfile │ ├── backup.sh │ ├── list-backups.sh │ └── restore.sh ├── config ├── __init__.py ├── asgi.py ├── routing.py ├── schema.py ├── settings │ ├── __init__.py │ ├── base.py │ ├── local.py │ ├── production.py │ └── test.py ├── urls.py └── wsgi.py ├── dev.yml ├── env.example ├── local.yml ├── locale ├── README.rst └── es │ └── LC_MESSAGES │ └── django.po ├── manage.py ├── production.yml ├── requirements.txt ├── requirements ├── base.txt ├── local.txt └── production.txt ├── runtime.txt ├── setup.cfg └── utility ├── install_os_dependencies.sh ├── install_python_dependencies.sh ├── requirements-jessie.apt ├── requirements-stretch.apt ├── requirements-trusty.apt └── requirements-xenial.apt /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/CODE_OF_CONDUCT.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/Procfile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/README.rst -------------------------------------------------------------------------------- /bootcamp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/__init__.py -------------------------------------------------------------------------------- /bootcamp/articles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootcamp/articles/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/articles/admin.py -------------------------------------------------------------------------------- /bootcamp/articles/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/articles/apps.py -------------------------------------------------------------------------------- /bootcamp/articles/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/articles/forms.py -------------------------------------------------------------------------------- /bootcamp/articles/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/articles/migrations/0001_initial.py -------------------------------------------------------------------------------- /bootcamp/articles/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootcamp/articles/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/articles/models.py -------------------------------------------------------------------------------- /bootcamp/articles/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootcamp/articles/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/articles/tests/test_models.py -------------------------------------------------------------------------------- /bootcamp/articles/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/articles/tests/test_views.py -------------------------------------------------------------------------------- /bootcamp/articles/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/articles/urls.py -------------------------------------------------------------------------------- /bootcamp/articles/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/articles/views.py -------------------------------------------------------------------------------- /bootcamp/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/contrib/__init__.py -------------------------------------------------------------------------------- /bootcamp/contrib/sites/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/contrib/sites/__init__.py -------------------------------------------------------------------------------- /bootcamp/contrib/sites/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/contrib/sites/migrations/0001_initial.py -------------------------------------------------------------------------------- /bootcamp/contrib/sites/migrations/0002_alter_domain_unique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/contrib/sites/migrations/0002_alter_domain_unique.py -------------------------------------------------------------------------------- /bootcamp/contrib/sites/migrations/0003_set_site_domain_and_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/contrib/sites/migrations/0003_set_site_domain_and_name.py -------------------------------------------------------------------------------- /bootcamp/contrib/sites/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/contrib/sites/migrations/__init__.py -------------------------------------------------------------------------------- /bootcamp/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/helpers.py -------------------------------------------------------------------------------- /bootcamp/messager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootcamp/messager/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/messager/admin.py -------------------------------------------------------------------------------- /bootcamp/messager/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/messager/apps.py -------------------------------------------------------------------------------- /bootcamp/messager/consumers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/messager/consumers.py -------------------------------------------------------------------------------- /bootcamp/messager/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/messager/migrations/0001_initial.py -------------------------------------------------------------------------------- /bootcamp/messager/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootcamp/messager/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/messager/models.py -------------------------------------------------------------------------------- /bootcamp/messager/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/messager/schema.py -------------------------------------------------------------------------------- /bootcamp/messager/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootcamp/messager/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/messager/tests/test_models.py -------------------------------------------------------------------------------- /bootcamp/messager/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/messager/tests/test_views.py -------------------------------------------------------------------------------- /bootcamp/messager/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/messager/urls.py -------------------------------------------------------------------------------- /bootcamp/messager/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/messager/views.py -------------------------------------------------------------------------------- /bootcamp/news/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootcamp/news/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/news/admin.py -------------------------------------------------------------------------------- /bootcamp/news/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/news/apps.py -------------------------------------------------------------------------------- /bootcamp/news/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/news/migrations/0001_initial.py -------------------------------------------------------------------------------- /bootcamp/news/migrations/0002_auto_20200405_1227.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/news/migrations/0002_auto_20200405_1227.py -------------------------------------------------------------------------------- /bootcamp/news/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootcamp/news/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/news/models.py -------------------------------------------------------------------------------- /bootcamp/news/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/news/schema.py -------------------------------------------------------------------------------- /bootcamp/news/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootcamp/news/templatetags/urlize_target_blank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/news/templatetags/urlize_target_blank.py -------------------------------------------------------------------------------- /bootcamp/news/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootcamp/news/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/news/tests/test_models.py -------------------------------------------------------------------------------- /bootcamp/news/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/news/tests/test_views.py -------------------------------------------------------------------------------- /bootcamp/news/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/news/urls.py -------------------------------------------------------------------------------- /bootcamp/news/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/news/views.py -------------------------------------------------------------------------------- /bootcamp/notifications/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootcamp/notifications/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/notifications/admin.py -------------------------------------------------------------------------------- /bootcamp/notifications/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/notifications/apps.py -------------------------------------------------------------------------------- /bootcamp/notifications/consumers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/notifications/consumers.py -------------------------------------------------------------------------------- /bootcamp/notifications/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/notifications/migrations/0001_initial.py -------------------------------------------------------------------------------- /bootcamp/notifications/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootcamp/notifications/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/notifications/models.py -------------------------------------------------------------------------------- /bootcamp/notifications/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootcamp/notifications/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/notifications/tests/test_models.py -------------------------------------------------------------------------------- /bootcamp/notifications/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/notifications/tests/test_views.py -------------------------------------------------------------------------------- /bootcamp/notifications/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/notifications/urls.py -------------------------------------------------------------------------------- /bootcamp/notifications/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/notifications/views.py -------------------------------------------------------------------------------- /bootcamp/qa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootcamp/qa/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/qa/apps.py -------------------------------------------------------------------------------- /bootcamp/qa/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/qa/forms.py -------------------------------------------------------------------------------- /bootcamp/qa/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/qa/migrations/0001_initial.py -------------------------------------------------------------------------------- /bootcamp/qa/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootcamp/qa/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/qa/models.py -------------------------------------------------------------------------------- /bootcamp/qa/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootcamp/qa/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/qa/tests/test_models.py -------------------------------------------------------------------------------- /bootcamp/qa/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/qa/tests/test_views.py -------------------------------------------------------------------------------- /bootcamp/qa/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/qa/urls.py -------------------------------------------------------------------------------- /bootcamp/qa/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/qa/views.py -------------------------------------------------------------------------------- /bootcamp/search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootcamp/search/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/search/apps.py -------------------------------------------------------------------------------- /bootcamp/search/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootcamp/search/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/search/tests/test_views.py -------------------------------------------------------------------------------- /bootcamp/search/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/search/urls.py -------------------------------------------------------------------------------- /bootcamp/search/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/search/views.py -------------------------------------------------------------------------------- /bootcamp/static/css/bootcamp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/css/bootcamp.css -------------------------------------------------------------------------------- /bootcamp/static/css/creative.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/css/creative.css -------------------------------------------------------------------------------- /bootcamp/static/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/css/login.css -------------------------------------------------------------------------------- /bootcamp/static/css/messager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/css/messager.css -------------------------------------------------------------------------------- /bootcamp/static/css/news.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/css/news.css -------------------------------------------------------------------------------- /bootcamp/static/css/notifications.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/css/notifications.css -------------------------------------------------------------------------------- /bootcamp/static/css/qa.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/css/qa.css -------------------------------------------------------------------------------- /bootcamp/static/css/user_form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/css/user_form.css -------------------------------------------------------------------------------- /bootcamp/static/css/user_list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/css/user_list.css -------------------------------------------------------------------------------- /bootcamp/static/css/user_profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/css/user_profile.css -------------------------------------------------------------------------------- /bootcamp/static/css/util.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/css/util.css -------------------------------------------------------------------------------- /bootcamp/static/fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootcamp/static/fonts/Linearicons-Free-v1.0.0/WebFont/Linearicons-Free.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/Linearicons-Free-v1.0.0/WebFont/Linearicons-Free.eot -------------------------------------------------------------------------------- /bootcamp/static/fonts/Linearicons-Free-v1.0.0/WebFont/Linearicons-Free.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/Linearicons-Free-v1.0.0/WebFont/Linearicons-Free.svg -------------------------------------------------------------------------------- /bootcamp/static/fonts/Linearicons-Free-v1.0.0/WebFont/Linearicons-Free.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/Linearicons-Free-v1.0.0/WebFont/Linearicons-Free.ttf -------------------------------------------------------------------------------- /bootcamp/static/fonts/Linearicons-Free-v1.0.0/WebFont/Linearicons-Free.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/Linearicons-Free-v1.0.0/WebFont/Linearicons-Free.woff -------------------------------------------------------------------------------- /bootcamp/static/fonts/Linearicons-Free-v1.0.0/WebFont/Linearicons-Free.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/Linearicons-Free-v1.0.0/WebFont/Linearicons-Free.woff2 -------------------------------------------------------------------------------- /bootcamp/static/fonts/Linearicons-Free-v1.0.0/icon-font.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/Linearicons-Free-v1.0.0/icon-font.min.css -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/HELP-US-OUT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/HELP-US-OUT.txt -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/css/font-awesome.css -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/css/font-awesome.min.css -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/less/animated.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/less/animated.less -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/less/bordered-pulled.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/less/bordered-pulled.less -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/less/core.less -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/less/fixed-width.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/less/fixed-width.less -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/less/font-awesome.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/less/font-awesome.less -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/less/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/less/icons.less -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/less/larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/less/larger.less -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/less/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/less/list.less -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/less/mixins.less -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/less/path.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/less/path.less -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/less/rotated-flipped.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/less/rotated-flipped.less -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/less/screen-reader.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/less/screen-reader.less -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/less/stacked.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/less/stacked.less -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/less/variables.less -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/scss/_animated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/scss/_animated.scss -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/scss/_bordered-pulled.scss -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/scss/_core.scss -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/scss/_fixed-width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/scss/_fixed-width.scss -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/scss/_icons.scss -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/scss/_larger.scss -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/scss/_list.scss -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/scss/_mixins.scss -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/scss/_path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/scss/_path.scss -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/scss/_rotated-flipped.scss -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/scss/_screen-reader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/scss/_screen-reader.scss -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/scss/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/scss/_stacked.scss -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/scss/_variables.scss -------------------------------------------------------------------------------- /bootcamp/static/fonts/font-awesome-4.7.0/scss/font-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/font-awesome-4.7.0/scss/font-awesome.scss -------------------------------------------------------------------------------- /bootcamp/static/fonts/raleway/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/raleway/OFL.txt -------------------------------------------------------------------------------- /bootcamp/static/fonts/raleway/Raleway-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/raleway/Raleway-Black.ttf -------------------------------------------------------------------------------- /bootcamp/static/fonts/raleway/Raleway-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/raleway/Raleway-BlackItalic.ttf -------------------------------------------------------------------------------- /bootcamp/static/fonts/raleway/Raleway-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/raleway/Raleway-Bold.ttf -------------------------------------------------------------------------------- /bootcamp/static/fonts/raleway/Raleway-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/raleway/Raleway-BoldItalic.ttf -------------------------------------------------------------------------------- /bootcamp/static/fonts/raleway/Raleway-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/raleway/Raleway-ExtraBold.ttf -------------------------------------------------------------------------------- /bootcamp/static/fonts/raleway/Raleway-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/raleway/Raleway-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /bootcamp/static/fonts/raleway/Raleway-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/raleway/Raleway-ExtraLight.ttf -------------------------------------------------------------------------------- /bootcamp/static/fonts/raleway/Raleway-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/raleway/Raleway-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /bootcamp/static/fonts/raleway/Raleway-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/raleway/Raleway-Italic.ttf -------------------------------------------------------------------------------- /bootcamp/static/fonts/raleway/Raleway-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/raleway/Raleway-Light.ttf -------------------------------------------------------------------------------- /bootcamp/static/fonts/raleway/Raleway-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/raleway/Raleway-LightItalic.ttf -------------------------------------------------------------------------------- /bootcamp/static/fonts/raleway/Raleway-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/raleway/Raleway-Medium.ttf -------------------------------------------------------------------------------- /bootcamp/static/fonts/raleway/Raleway-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/raleway/Raleway-MediumItalic.ttf -------------------------------------------------------------------------------- /bootcamp/static/fonts/raleway/Raleway-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/raleway/Raleway-Regular.ttf -------------------------------------------------------------------------------- /bootcamp/static/fonts/raleway/Raleway-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/raleway/Raleway-SemiBold.ttf -------------------------------------------------------------------------------- /bootcamp/static/fonts/raleway/Raleway-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/raleway/Raleway-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /bootcamp/static/fonts/raleway/Raleway-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/raleway/Raleway-Thin.ttf -------------------------------------------------------------------------------- /bootcamp/static/fonts/raleway/Raleway-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/fonts/raleway/Raleway-ThinItalic.ttf -------------------------------------------------------------------------------- /bootcamp/static/img/Jcrop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/img/Jcrop.gif -------------------------------------------------------------------------------- /bootcamp/static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/img/favicon.png -------------------------------------------------------------------------------- /bootcamp/static/img/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/img/header.jpg -------------------------------------------------------------------------------- /bootcamp/static/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/img/loading.gif -------------------------------------------------------------------------------- /bootcamp/static/img/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/img/user.png -------------------------------------------------------------------------------- /bootcamp/static/js/articles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/js/articles.js -------------------------------------------------------------------------------- /bootcamp/static/js/bootcamp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/js/bootcamp.js -------------------------------------------------------------------------------- /bootcamp/static/js/infinite.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/js/infinite.min.js -------------------------------------------------------------------------------- /bootcamp/static/js/jquery.waypoints.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/js/jquery.waypoints.min.js -------------------------------------------------------------------------------- /bootcamp/static/js/messager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/js/messager.js -------------------------------------------------------------------------------- /bootcamp/static/js/news.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/js/news.js -------------------------------------------------------------------------------- /bootcamp/static/js/qa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/js/qa.js -------------------------------------------------------------------------------- /bootcamp/static/js/websocketbridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/static/js/websocketbridge.js -------------------------------------------------------------------------------- /bootcamp/templates/400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/400.html -------------------------------------------------------------------------------- /bootcamp/templates/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/403.html -------------------------------------------------------------------------------- /bootcamp/templates/403_csrf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/403_csrf.html -------------------------------------------------------------------------------- /bootcamp/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/404.html -------------------------------------------------------------------------------- /bootcamp/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/500.html -------------------------------------------------------------------------------- /bootcamp/templates/account/account_inactive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/account/account_inactive.html -------------------------------------------------------------------------------- /bootcamp/templates/account/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/account/base.html -------------------------------------------------------------------------------- /bootcamp/templates/account/email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/account/email.html -------------------------------------------------------------------------------- /bootcamp/templates/account/email_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/account/email_confirm.html -------------------------------------------------------------------------------- /bootcamp/templates/account/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/account/login.html -------------------------------------------------------------------------------- /bootcamp/templates/account/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/account/logout.html -------------------------------------------------------------------------------- /bootcamp/templates/account/password_change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/account/password_change.html -------------------------------------------------------------------------------- /bootcamp/templates/account/password_reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/account/password_reset.html -------------------------------------------------------------------------------- /bootcamp/templates/account/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/account/password_reset_done.html -------------------------------------------------------------------------------- /bootcamp/templates/account/password_reset_from_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/account/password_reset_from_key.html -------------------------------------------------------------------------------- /bootcamp/templates/account/password_reset_from_key_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/account/password_reset_from_key_done.html -------------------------------------------------------------------------------- /bootcamp/templates/account/password_set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/account/password_set.html -------------------------------------------------------------------------------- /bootcamp/templates/account/signup.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/account/signup.1.html -------------------------------------------------------------------------------- /bootcamp/templates/account/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/account/signup.html -------------------------------------------------------------------------------- /bootcamp/templates/account/signup_closed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/account/signup_closed.html -------------------------------------------------------------------------------- /bootcamp/templates/account/verification_sent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/account/verification_sent.html -------------------------------------------------------------------------------- /bootcamp/templates/account/verified_email_required.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/account/verified_email_required.html -------------------------------------------------------------------------------- /bootcamp/templates/articles/article_create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/articles/article_create.html -------------------------------------------------------------------------------- /bootcamp/templates/articles/article_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/articles/article_detail.html -------------------------------------------------------------------------------- /bootcamp/templates/articles/article_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/articles/article_list.html -------------------------------------------------------------------------------- /bootcamp/templates/articles/article_update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/articles/article_update.html -------------------------------------------------------------------------------- /bootcamp/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/base.html -------------------------------------------------------------------------------- /bootcamp/templates/markdownx/widget2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/markdownx/widget2.html -------------------------------------------------------------------------------- /bootcamp/templates/messager/message_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/messager/message_list.html -------------------------------------------------------------------------------- /bootcamp/templates/messager/single_message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/messager/single_message.html -------------------------------------------------------------------------------- /bootcamp/templates/news/news_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/news/news_confirm_delete.html -------------------------------------------------------------------------------- /bootcamp/templates/news/news_form_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/news/news_form_modal.html -------------------------------------------------------------------------------- /bootcamp/templates/news/news_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/news/news_list.html -------------------------------------------------------------------------------- /bootcamp/templates/news/news_single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/news/news_single.html -------------------------------------------------------------------------------- /bootcamp/templates/news/news_thread.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/news/news_thread.html -------------------------------------------------------------------------------- /bootcamp/templates/news/news_thread_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/news/news_thread_modal.html -------------------------------------------------------------------------------- /bootcamp/templates/notifications/most_recent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/notifications/most_recent.html -------------------------------------------------------------------------------- /bootcamp/templates/notifications/notification_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/notifications/notification_list.html -------------------------------------------------------------------------------- /bootcamp/templates/pages/about.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} -------------------------------------------------------------------------------- /bootcamp/templates/pages/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/pages/home.html -------------------------------------------------------------------------------- /bootcamp/templates/qa/answer_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/qa/answer_form.html -------------------------------------------------------------------------------- /bootcamp/templates/qa/answer_sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/qa/answer_sample.html -------------------------------------------------------------------------------- /bootcamp/templates/qa/question_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/qa/question_detail.html -------------------------------------------------------------------------------- /bootcamp/templates/qa/question_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/qa/question_form.html -------------------------------------------------------------------------------- /bootcamp/templates/qa/question_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/qa/question_list.html -------------------------------------------------------------------------------- /bootcamp/templates/qa/question_sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/qa/question_sample.html -------------------------------------------------------------------------------- /bootcamp/templates/search/search_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/search/search_results.html -------------------------------------------------------------------------------- /bootcamp/templates/users/user_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/users/user_detail.html -------------------------------------------------------------------------------- /bootcamp/templates/users/user_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/users/user_form.html -------------------------------------------------------------------------------- /bootcamp/templates/users/user_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/templates/users/user_list.html -------------------------------------------------------------------------------- /bootcamp/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootcamp/users/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/users/adapters.py -------------------------------------------------------------------------------- /bootcamp/users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/users/admin.py -------------------------------------------------------------------------------- /bootcamp/users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/users/apps.py -------------------------------------------------------------------------------- /bootcamp/users/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/users/migrations/0001_initial.py -------------------------------------------------------------------------------- /bootcamp/users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootcamp/users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/users/models.py -------------------------------------------------------------------------------- /bootcamp/users/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/users/schema.py -------------------------------------------------------------------------------- /bootcamp/users/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootcamp/users/tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/users/tests/test_admin.py -------------------------------------------------------------------------------- /bootcamp/users/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/users/tests/test_models.py -------------------------------------------------------------------------------- /bootcamp/users/tests/test_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/users/tests/test_urls.py -------------------------------------------------------------------------------- /bootcamp/users/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/users/tests/test_views.py -------------------------------------------------------------------------------- /bootcamp/users/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/users/urls.py -------------------------------------------------------------------------------- /bootcamp/users/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/bootcamp/users/views.py -------------------------------------------------------------------------------- /compose/local/django/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/compose/local/django/Dockerfile -------------------------------------------------------------------------------- /compose/local/django/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/compose/local/django/start.sh -------------------------------------------------------------------------------- /compose/production/caddy/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/compose/production/caddy/Caddyfile -------------------------------------------------------------------------------- /compose/production/caddy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/compose/production/caddy/Dockerfile -------------------------------------------------------------------------------- /compose/production/django/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/compose/production/django/Dockerfile -------------------------------------------------------------------------------- /compose/production/django/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/compose/production/django/entrypoint.sh -------------------------------------------------------------------------------- /compose/production/postgres/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/compose/production/postgres/Dockerfile -------------------------------------------------------------------------------- /compose/production/postgres/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/compose/production/postgres/backup.sh -------------------------------------------------------------------------------- /compose/production/postgres/list-backups.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/compose/production/postgres/list-backups.sh -------------------------------------------------------------------------------- /compose/production/postgres/restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/compose/production/postgres/restore.sh -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/config/asgi.py -------------------------------------------------------------------------------- /config/routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/config/routing.py -------------------------------------------------------------------------------- /config/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/config/schema.py -------------------------------------------------------------------------------- /config/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/config/settings/base.py -------------------------------------------------------------------------------- /config/settings/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/config/settings/local.py -------------------------------------------------------------------------------- /config/settings/production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/config/settings/production.py -------------------------------------------------------------------------------- /config/settings/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/config/settings/test.py -------------------------------------------------------------------------------- /config/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/config/urls.py -------------------------------------------------------------------------------- /config/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/config/wsgi.py -------------------------------------------------------------------------------- /dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/dev.yml -------------------------------------------------------------------------------- /env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/env.example -------------------------------------------------------------------------------- /local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/local.yml -------------------------------------------------------------------------------- /locale/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/locale/README.rst -------------------------------------------------------------------------------- /locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/manage.py -------------------------------------------------------------------------------- /production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/production.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | # This file is expected by Heroku. 2 | 3 | -r requirements/production.txt 4 | -------------------------------------------------------------------------------- /requirements/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/requirements/base.txt -------------------------------------------------------------------------------- /requirements/local.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/requirements/local.txt -------------------------------------------------------------------------------- /requirements/production.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/requirements/production.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.6.4 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/setup.cfg -------------------------------------------------------------------------------- /utility/install_os_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/utility/install_os_dependencies.sh -------------------------------------------------------------------------------- /utility/install_python_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/utility/install_python_dependencies.sh -------------------------------------------------------------------------------- /utility/requirements-jessie.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/utility/requirements-jessie.apt -------------------------------------------------------------------------------- /utility/requirements-stretch.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/utility/requirements-stretch.apt -------------------------------------------------------------------------------- /utility/requirements-trusty.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/utility/requirements-trusty.apt -------------------------------------------------------------------------------- /utility/requirements-xenial.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitorfs/bootcamp/HEAD/utility/requirements-xenial.apt --------------------------------------------------------------------------------