Skip to content

Commit 6ad80dc

Browse files
author
Andrei D.
committed
Change project name
1 parent 9014783 commit 6ad80dc

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Format details: https://aka.ms/devcontainer.json
22
// For config options: https://github.com/devcontainers/templates/tree/main/src/python
33
{
4-
"name": "aws-iac-django-serverless-starter",
4+
"name": "aws-iac-serverless-django-sqlite-poc",
55

66
// Use a Dockerfile; more info: https://containers.dev/guide/dockerfile
77
"build": {

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# IaC Django Serverless Starter for AWS
1+
# IaC Serverless Django SQLite PoC for AWS
22

33
This project demonstrates how to deploy a Django application utilizing a *fully* serverless architecture on AWS. It uses AWS Lambda as the execution environment, SQLite as the database, and CloudFormation/SAM for infrastructure provisioning. The setup includes a local development environment using VS Code and Docker/Dev Containers. Please note that this project is intended for demonstration purposes and is not suitable for production use (see Limitations section).
44

@@ -109,7 +109,7 @@ This project uses VS Code's [Dev Containers extension](https://marketplace.visua
109109
2. **Open the Project in a Dev Container**:
110110
- Clone the repository:
111111
```sh
112-
git clone https://github.com/efficient-solutions/aws-iac-django-serverless-starter.git
112+
git clone https://github.com/efficient-solutions/aws-iac-serverless-django-sqlite-poc.git
113113
```
114114
- Open the project folder in VS Code.
115115
- Click **Reopen in Container** when prompted. VS Code will build and launch the Dev Container based on the configuration files in the `.devcontainer` folder.
@@ -161,19 +161,19 @@ Before proceeding to the deployment, add your [AWS credentials](https://docs.aws
161161
3. Apply the database migrations:
162162

163163
```sh
164-
sam remote invoke Function --event '{"manage":"migrate"}' --stack-name aws-iac-django-serverless-starter
164+
sam remote invoke Function --event '{"manage":"migrate"}' --stack-name aws-iac-serverless-django-sqlite-poc
165165
```
166166

167167
4. Collect the static files:
168168

169169
```sh
170-
sam remote invoke Function --event '{"manage":"collectstatic"}' --stack-name aws-iac-django-serverless-starter
170+
sam remote invoke Function --event '{"manage":"collectstatic"}' --stack-name aws-iac-serverless-django-sqlite-poc
171171
```
172172

173173
5. Create a superuser:
174174

175175
```sh
176-
sam remote invoke Function --event '{"manage":"create_superuser"}' --stack-name aws-iac-django-serverless-starter
176+
sam remote invoke Function --event '{"manage":"create_superuser"}' --stack-name aws-iac-serverless-django-sqlite-poc
177177
```
178178

179179
> **Important**: This command creates a superuser `root` with a randomly-generated password which is returned in the output. Change this password once you log in. Also, this command can only be run once.
@@ -208,7 +208,7 @@ This project is intended for development and testing purposes only. It is not su
208208

209209
## Production Use
210210

211-
For those considering this architecture for production environments, we recommend exploring our [commercial version](https://efficient.solutions/aws-iac-django-serverless-basic/), which addresses all the limitations mentioned above.
211+
For those considering this architecture for production environments, we recommend exploring our [commercial version](https://efficient.solutions/aws-iac-serverless-django-sqlite/), which addresses all the limitations mentioned above.
212212

213213
## License
214214

src/polls/templates/base.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<div class="row mt-4 justify-content-center">
1313
<div class="col-lg-8">
1414
<h1 class="h2">{% block header %}{% endblock %}</h1>
15-
<p class="small text-muted pb-2">This is a demo version of <a class="text-muted" href="https://github.com/efficient-solutions/aws-iac-django-serverless-starter">IaC Django Serverless Starter for AWS</a></p>
15+
<p class="small text-muted pb-2">This is a demo version of <a class="text-muted" href="https://github.com/efficient-solutions/aws-iac-serverless-django-sqlite-poc">IaC Serverless Django SQLite PoC for AWS</a></p>
1616

1717
{% block content %}{% endblock %}
1818
</div>

template.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# IaC Django Serverless Starter for AWS
1+
# IaC Serverless Django SQLite PoC for AWS
22
# Copyright (C) 2024 Efficient Solutions LLC
33
#
44
# GitHub Repository
5-
# https://github.com/efficient-solutions/aws-iac-django-serverless-starter
5+
# https://github.com/efficient-solutions/aws-iac-serverless-django-sqlite-poc
66
#
77
# This software is released under the GNU GPLv3 license
88
# https://www.gnu.org/licenses/gpl-3.0.html
@@ -18,7 +18,7 @@ Parameters:
1818
ProjectId:
1919
Description: ID of the project used for resource identification and tagging
2020
Type: String
21-
Default: aws-iac-django-serverless-starter
21+
Default: aws-iac-serverless-django-sqlite-poc
2222
AllowedPattern: ^[a-zA-Z0-9-]+$
2323
ConstraintDescription: Project name must contain only letters, numbers, and hyphens
2424

0 commit comments

Comments
 (0)