master
Commits on Nov 18, 2021
-
Merge pull request #221 from danchann/fix-navbar-overflow-mobile
fix navbar overflow in mobile view
-
Commits on Nov 17, 2021
Commits on Jul 7, 2021
-
Merge pull request #217 from hack4impact/revert-215-dependabot/pip/ur…
…llib3-1.26.5 Revert "Bump urllib3 from 1.25.8 to 1.26.5"
-
Commits on Jun 29, 2021
-
Merge pull request #215 from hack4impact/dependabot/pip/urllib3-1.26.5
Bump urllib3 from 1.25.8 to 1.26.5
Commits on Jun 2, 2021
-
Bump urllib3 from 1.25.8 to 1.26.5
Bumps [urllib3](https://github.com/urllib3/urllib3) from 1.25.8 to 1.26.5. - [Release notes](https://github.com/urllib3/urllib3/releases) - [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst) - [Commits](urllib3/urllib3@1.25.8...1.26.5) --- updated-dependencies: - dependency-name: urllib3 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
Commits on May 11, 2021
-
Merge pull request #212 from hack4impact/dependabot/pip/jinja2-2.11.3
Bump jinja2 from 2.10.1 to 2.11.3
Commits on Apr 30, 2021
-
Merge pull request #213 from hack4impact/dependabot/pip/urllib3-1.25.8
Bump urllib3 from 1.25.3 to 1.25.8
-
Bump urllib3 from 1.25.3 to 1.25.8
Bumps [urllib3](https://github.com/urllib3/urllib3) from 1.25.3 to 1.25.8. - [Release notes](https://github.com/urllib3/urllib3/releases) - [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst) - [Commits](urllib3/urllib3@1.25.3...1.25.8) Signed-off-by: dependabot[bot] <[email protected]>
Commits on Mar 19, 2021
-
Bump jinja2 from 2.10.1 to 2.11.3
Bumps [jinja2](https://github.com/pallets/jinja) from 2.10.1 to 2.11.3. - [Release notes](https://github.com/pallets/jinja/releases) - [Changelog](https://github.com/pallets/jinja/blob/master/CHANGES.rst) - [Commits](pallets/jinja@2.10.1...2.11.3) Signed-off-by: dependabot[bot] <[email protected]>
Commits on Jan 4, 2021
-
Merge pull request #210 from eneacosta/docker-compose
dockerization and separation of redis and postress fron the app itsel…
Commits on Nov 11, 2020
-
Docker documentation down to below the regular set up and persist of …
…Local file for the deploy without docker
Acosta Nicolás Gabriel committedNov 11, 2020
Commits on Nov 7, 2020
-
dockerization and separation of redis and postress fron the app itsel…
…f, and creation of docker-compose file for te deploy of development environment
Acosta Nicolás Gabriel committedNov 7, 2020
Commits on Oct 17, 2020
-
Merge pull request #208 from blueskyzes/small-bug-fixes
Update views.py
-
Updated form flash error, line 45, on failed user login attempt the form flash would not occur due to "error" being "form-error".
Commits on Jun 11, 2020
-
Merge pull request #203 from MohammedRashad/master
Added Dockerfile - for testing not production
Commits on Jun 6, 2020
-
added small chane to dockerfile instructions
Mohamed Rashad committedJun 6, 2020 -
Added dockerfile help and description
Mohamed Rashad committedJun 6, 2020 -
Added dockerfile - for testing not production
Mohamed Rashad committedJun 6, 2020
Commits on Jan 28, 2020
-
Merge pull request #200 from fletchgraham/patch-1
small typo and formatting fixes
Commits on Jan 14, 2020
Commits on Dec 11, 2019
-
Merge pull request #197 from trinanda/production-config
set debugger and reloader to False on production
-
Commits on Sep 2, 2019
-
Take advantage of the fact that the project is now a template. Point people to the equivalent, shorter, and built-in venv utility instead of virtualenv.
-
-
Merge pull request #193 from nk9/full-upgrade
Full upgrade of dependent libraries
-
Update everything to the latest version. Add pipupdate to make this e…
…asy in future. Adopt FlaskForm and CSRFProtect to avoid deprecation warnings. Tweak config in create_app() so code works with Flask 1.0+.
-
-
Merge pull request #189 from trinanda/flash-message
autohide flash message
Commits on Aug 28, 2019
-
Merge pull request #191 from nk9/config-changes
Properly use the default parameter of get()
-
Commits on Aug 27, 2019
-
Properly use the default parameter of get()
Using `dict.get('key') or True` means that key can never be False! And in other cases, it's just clearer and more compact to use the default parameter.