Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,14 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description"
content="DevPath recommends real coding projects based on your skills, level, and interests — with full roadmaps and starter code." />
<meta name="description" content="DevPath recommends real coding projects based on your skills, level, and interests — with full roadmaps and starter code." />
<meta property="og:title" content="DevPath — Find Projects Based On Your Skills" />
<meta property="og:description" content="Get matched to real coding projects with roadmaps and starter code." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://mydevpath-github.vercel.app/" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="DevPath — Find Projects Based On Your Skills" />
<meta name="twitter:description" content="Get matched to real coding projects with roadmaps and starter code." />
<title>DevPath — Find Projects Based On Your Skills</title>
<link rel="icon" href="/static/favicon.svg" type="image/svg+xml" />
<link rel="stylesheet" href="/static/style.css" />
Expand Down
1 change: 1 addition & 0 deletions templates/project.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="{{ project.description[:155] }}" />
<!-- Page title uses the project title injected by Flask's Jinja2 template engine -->
<title>{{ project.title }} — DevPath</title>
<link rel="icon" href="/static/favicon.svg" type="image/svg+xml" />
Expand Down
8 changes: 8 additions & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import pytest
from app import app

@pytest.fixture
def client():
app.config["TESTING"] = True
with app.test_client() as client:
yield client
Loading