Skip to content

Commit 671f565

Browse files
Built site for gh-pages
1 parent db210bf commit 671f565

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

.nojekyll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
08f9ef30
1+
b1fdfa91

docs/installation.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ <h2 class="anchored" data-anchor-id="set-environment-variables">Set environment
305305
<p>Copy .env.example to .env with <code>cp .env.example .env</code>.</p>
306306
<p>Generate a 256 bit secret key with <code>openssl rand -base64 32</code> and paste it into the .env file.</p>
307307
<p>Set your desired database name, username, and password in the .env file.</p>
308-
<p>To use password recovery, register a <a href="https://resend.com/">Resend</a> account, verify a domain, get an API key, and paste the API key into the .env file.</p>
308+
<p>To use password recovery, register a <a href="https://resend.com/">Resend</a> account, verify a domain, get an API key, and paste the API key and sender email address into the .env file.</p>
309309
<p>If using the dev container configuration, you will need to set the <code>DB_HOST</code> environment variable to “host.docker.internal” in the .env file. Otherwise, set <code>DB_HOST</code> to “localhost” for local development. (In production, <code>DB_HOST</code> will be set to the hostname of the database server.)</p>
310310
</section>
311311
<section id="start-development-database" class="level2">

docs/static/documentation.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ Generate a 256 bit secret key with `openssl rand -base64 32` and paste it into t
114114

115115
Set your desired database name, username, and password in the .env file.
116116

117-
To use password recovery, register a [Resend](https://resend.com/) account, verify a domain, get an API key, and paste the API key into the .env file.
117+
To use password recovery and other email features, register a [Resend](https://resend.com/) account, verify a domain, get an API key, and paste the API key and the email address you want to send emails from into the .env file. Note that you will need to [verify a domain through the Resend dashboard](https://resend.com/docs/dashboard/domains/introduction) to send emails from that domain.
118118

119119
### Start development database
120120

@@ -542,7 +542,7 @@ Generate a 256 bit secret key with `openssl rand -base64 32` and paste it into t
542542

543543
Set your desired database name, username, and password in the .env file.
544544

545-
To use password recovery, register a [Resend](https://resend.com/) account, verify a domain, get an API key, and paste the API key into the .env file.
545+
To use password recovery, register a [Resend](https://resend.com/) account, verify a domain, get an API key, and paste the API key and sender email address into the .env file.
546546

547547
If using the dev container configuration, you will need to set the `DB_HOST` environment variable to "host.docker.internal" in the .env file. Otherwise, set `DB_HOST` to "localhost" for local development. (In production, `DB_HOST` will be set to the hostname of the database server.)
548548

docs/static/schema.png

32 KB
Loading

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ <h3 class="anchored" data-anchor-id="set-environment-variables">Set environment
311311
<p>Copy <code>.env.example</code> to <code>.env</code> with <code>cp .env.example .env</code>.</p>
312312
<p>Generate a 256 bit secret key with <code>openssl rand -base64 32</code> and paste it into the .env file.</p>
313313
<p>Set your desired database name, username, and password in the .env file.</p>
314-
<p>To use password recovery, register a <a href="https://resend.com/">Resend</a> account, verify a domain, get an API key, and paste the API key into the .env file.</p>
314+
<p>To use password recovery and other email features, register a <a href="https://resend.com/">Resend</a> account, verify a domain, get an API key, and paste the API key and the email address you want to send emails from into the .env file. Note that you will need to <a href="https://resend.com/docs/dashboard/domains/introduction">verify a domain through the Resend dashboard</a> to send emails from that domain.</p>
315315
</section>
316316
<section id="start-development-database" class="level3">
317317
<h3 class="anchored" data-anchor-id="start-development-database">Start development database</h3>

search.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109
"href": "index.html#installation",
110110
"title": "FastAPI, Jinja2, PostgreSQL Webapp Template",
111111
"section": "Installation",
112-
"text": "Installation\nFor comprehensive installation instructions, see the installation page.\n\nuv\nMacOS and Linux:\nwget -qO- https://astral.sh/uv/install.sh | sh\nWindows:\npowershell -ExecutionPolicy ByPass -c \"irm https://astral.sh/uv/install.ps1 | iex\"\nSee the uv installation docs for more information.\n\n\nPython\nInstall Python 3.12 or higher from either the official downloads page or using uv:\n# Installs the latest version\nuv python install\n\n\nDocker and Docker Compose\nInstall Docker Desktop and Coker Compose for your operating system by following the instructions in the documentation.\n\n\nPostgreSQL headers\nFor Ubuntu/Debian:\nsudo apt update && sudo apt install -y python3-dev libpq-dev libwebp-dev\nFor macOS:\nbrew install postgresql\nFor Windows:\n\nNo installation required\n\n\n\nPython dependencies\nFrom the root directory, run:\nuv venv\nuv sync\nThis will create an in-project virtual environment and install all dependencies.\n\n\nSet environment variables\nCopy .env.example to .env with cp .env.example .env.\nGenerate a 256 bit secret key with openssl rand -base64 32 and paste it into the .env file.\nSet your desired database name, username, and password in the .env file.\nTo use password recovery, register a Resend account, verify a domain, get an API key, and paste the API key into the .env file.\n\n\nStart development database\nTo start the development database, run the following command in your terminal from the root directory:\ndocker compose up -d\n\n\nRun the development server\nMake sure the development database is running and tables and default permissions/roles are created first.\nuv run python -m uvicorn main:app --host 0.0.0.0 --port 8000 --reload\nNavigate to http://localhost:8000/\n\n\nLint types with mypy\nuv run mypy ."
112+
"text": "Installation\nFor comprehensive installation instructions, see the installation page.\n\nuv\nMacOS and Linux:\nwget -qO- https://astral.sh/uv/install.sh | sh\nWindows:\npowershell -ExecutionPolicy ByPass -c \"irm https://astral.sh/uv/install.ps1 | iex\"\nSee the uv installation docs for more information.\n\n\nPython\nInstall Python 3.12 or higher from either the official downloads page or using uv:\n# Installs the latest version\nuv python install\n\n\nDocker and Docker Compose\nInstall Docker Desktop and Coker Compose for your operating system by following the instructions in the documentation.\n\n\nPostgreSQL headers\nFor Ubuntu/Debian:\nsudo apt update && sudo apt install -y python3-dev libpq-dev libwebp-dev\nFor macOS:\nbrew install postgresql\nFor Windows:\n\nNo installation required\n\n\n\nPython dependencies\nFrom the root directory, run:\nuv venv\nuv sync\nThis will create an in-project virtual environment and install all dependencies.\n\n\nSet environment variables\nCopy .env.example to .env with cp .env.example .env.\nGenerate a 256 bit secret key with openssl rand -base64 32 and paste it into the .env file.\nSet your desired database name, username, and password in the .env file.\nTo use password recovery and other email features, register a Resend account, verify a domain, get an API key, and paste the API key and the email address you want to send emails from into the .env file. Note that you will need to verify a domain through the Resend dashboard to send emails from that domain.\n\n\nStart development database\nTo start the development database, run the following command in your terminal from the root directory:\ndocker compose up -d\n\n\nRun the development server\nMake sure the development database is running and tables and default permissions/roles are created first.\nuv run python -m uvicorn main:app --host 0.0.0.0 --port 8000 --reload\nNavigate to http://localhost:8000/\n\n\nLint types with mypy\nuv run mypy ."
113113
},
114114
{
115115
"objectID": "index.html#developing-with-llms",
@@ -179,7 +179,7 @@
179179
"href": "docs/installation.html#set-environment-variables",
180180
"title": "Installation",
181181
"section": "Set environment variables",
182-
"text": "Set environment variables\nCopy .env.example to .env with cp .env.example .env.\nGenerate a 256 bit secret key with openssl rand -base64 32 and paste it into the .env file.\nSet your desired database name, username, and password in the .env file.\nTo use password recovery, register a Resend account, verify a domain, get an API key, and paste the API key into the .env file.\nIf using the dev container configuration, you will need to set the DB_HOST environment variable to “host.docker.internal” in the .env file. Otherwise, set DB_HOST to “localhost” for local development. (In production, DB_HOST will be set to the hostname of the database server.)"
182+
"text": "Set environment variables\nCopy .env.example to .env with cp .env.example .env.\nGenerate a 256 bit secret key with openssl rand -base64 32 and paste it into the .env file.\nSet your desired database name, username, and password in the .env file.\nTo use password recovery, register a Resend account, verify a domain, get an API key, and paste the API key and sender email address into the .env file.\nIf using the dev container configuration, you will need to set the DB_HOST environment variable to “host.docker.internal” in the .env file. Otherwise, set DB_HOST to “localhost” for local development. (In production, DB_HOST will be set to the hostname of the database server.)"
183183
},
184184
{
185185
"objectID": "docs/installation.html#start-development-database",

sitemap.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,30 +2,30 @@
22
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
33
<url>
44
<loc>https://Promptly-Technologies-LLC.github.io/fastapi-jinja2-postgres-webapp/docs/deployment.html</loc>
5-
<lastmod>2025-04-10T20:56:41.955Z</lastmod>
5+
<lastmod>2025-04-22T01:59:35.288Z</lastmod>
66
</url>
77
<url>
88
<loc>https://Promptly-Technologies-LLC.github.io/fastapi-jinja2-postgres-webapp/docs/contributing.html</loc>
9-
<lastmod>2025-04-10T20:56:41.955Z</lastmod>
9+
<lastmod>2025-04-22T01:59:35.287Z</lastmod>
1010
</url>
1111
<url>
1212
<loc>https://Promptly-Technologies-LLC.github.io/fastapi-jinja2-postgres-webapp/docs/authentication.html</loc>
13-
<lastmod>2025-04-10T20:56:41.955Z</lastmod>
13+
<lastmod>2025-04-22T01:59:35.287Z</lastmod>
1414
</url>
1515
<url>
1616
<loc>https://Promptly-Technologies-LLC.github.io/fastapi-jinja2-postgres-webapp/index.html</loc>
17-
<lastmod>2025-04-10T20:56:41.958Z</lastmod>
17+
<lastmod>2025-04-22T01:59:35.291Z</lastmod>
1818
</url>
1919
<url>
2020
<loc>https://Promptly-Technologies-LLC.github.io/fastapi-jinja2-postgres-webapp/docs/architecture.html</loc>
21-
<lastmod>2025-04-10T20:56:41.954Z</lastmod>
21+
<lastmod>2025-04-22T01:59:35.287Z</lastmod>
2222
</url>
2323
<url>
2424
<loc>https://Promptly-Technologies-LLC.github.io/fastapi-jinja2-postgres-webapp/docs/installation.html</loc>
25-
<lastmod>2025-04-10T20:56:41.955Z</lastmod>
25+
<lastmod>2025-04-22T01:59:35.288Z</lastmod>
2626
</url>
2727
<url>
2828
<loc>https://Promptly-Technologies-LLC.github.io/fastapi-jinja2-postgres-webapp/docs/customization.html</loc>
29-
<lastmod>2025-04-10T20:56:41.955Z</lastmod>
29+
<lastmod>2025-04-22T01:59:35.287Z</lastmod>
3030
</url>
3131
</urlset>

0 commit comments

Comments
 (0)