File size: 509 Bytes
185f702
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# CRUD Application with PostgreSQL and SQLAlchemy

This is a CRUD application using PostgreSQL and SQLAlchemy.

## Running the Application

1. Install the dependencies: `pip install -r requirements.txt`
2. Run the migrations: `python manage.py migrate`
3. Run the application: `python manage.py runserver`

## Testing the Application

1. Run the tests: `pytest`

## Deploying to AWS Lambda

1. Create a SAM template: `sam init`
2. Package the application: `sam package`
3. Deploy the application: `sam deploy`