Skip to content
This repository has been archived by the owner on Dec 18, 2023. It is now read-only.

Commit

Permalink
Add: ads
Browse files Browse the repository at this point in the history
Signed-off-by: NaveenKumar Namachivayam ⚡ <catch.nkn@gmail.com>
  • Loading branch information
QAInsights committed Feb 13, 2023
1 parent 12dc685 commit ef26382
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion application.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def __call__(self, environ, start_response):
github_bp = make_github_blueprint()

application.config.update(dict(
PREFERRED_URL_SCHEME = 'https'
PREFERRED_URL_SCHEME='https'
))
application.wsgi_app = ReverseProxied(application.wsgi_app)

Expand Down
2 changes: 1 addition & 1 deletion templates/features.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{% extends 'layout.html' %}
{% block contents %}
<div class="container">
<h3>✅ Features and Limitations</h3><br/>
<h1>✅ Features and Limitations</h1><br/>
<h4>⬆️ Upload file format</h4>
<p class="lead">
You can upload raw data in CSV format (recommended) or JSON using the performance testing tool of your choice.
Expand Down
2 changes: 1 addition & 1 deletion templates/help.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{% extends 'layout.html' %}
{% block contents %}
<div class="container">
<h1>Help</h1><br/>
<h1>📄 Help</h1><br/>
<p class="lead">
This page guides you to gather the performance results in csv format from commonly used tools.
</p>
Expand Down
4 changes: 3 additions & 1 deletion templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
<div class="container">
<div class="px-4 pt-5 my-5 text-center border-bottom">
<h1 class="display-4 fw-bold">🤖 PerfGPT</h1>

<div class="col-lg-6 mx-auto">
<p class="lead mb-4">Analyze your performance test results using OpenAI model.</p>
<p class="lead mb-4">In just <span style="font-size: larger;">2</span> steps</p>
Expand All @@ -22,6 +21,9 @@ <h1 class="display-4 fw-bold">🤖 PerfGPT</h1>
<button type="button" class="btn btn-primary btn-lg px-4 me-sm-3" onclick="window.open('/signin')"><i class="fab fa-github"></i> Login using GitHub</button>
</div>
</div>
<div class="alert alert-info" role="alert">
<p>Become a Java performance expert. Check this <a href="https://ycrash.io/java-performance-training?ref=perfgpt" target="_blank">JVM Performance Training</a> course.</p>
</div>
{% endif %}
<div class="overflow-hidden" style="max-height: 30vh;">
<div class="container px-5">
Expand Down

0 comments on commit ef26382

Please sign in to comment.