Skip to content

Commit 352f73d

Browse files
authored
Merge pull request #415 from devsetgo/dev
Add email validation capabilities
2 parents 676341e + 496fa54 commit 352f73d

40 files changed

+1166
-942
lines changed

.devcontainer/docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ services:
1818
- postgres-data:/var/lib/postgresql/data
1919
environment:
2020
POSTGRES_USER: postgres
21-
POSTGRES_DB: postgres
21+
POSTGRES_DB: dsglib_test
2222
POSTGRES_PASSWORD: postgres
2323
ports:
24-
- "5432:5432"
24+
- "5433:5432"
2525
networks:
2626
- app-network
2727

@@ -32,7 +32,7 @@ services:
3232
PGADMIN_DEFAULT_EMAIL: pgadmin@email.com
3333
PGADMIN_DEFAULT_PASSWORD: pgadmin
3434
ports:
35-
- "5050:80"
35+
- "5051:80"
3636
depends_on:
3737
- postgresdbTest
3838
networks:

.github/workflows/autofill_pullrequest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ jobs:
1919
with:
2020
github_token: ${{ secrets.GITHUB_TOKEN }}
2121
openai_api_key: ${{ secrets.OPENAI_API_KEY }}
22-
max_tokens: 1000
22+
max_tokens: 4000
2323
openai_model: gpt-4

.pre-commit-config.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,3 @@ repos:
1212
hooks:
1313
- id: ruff
1414
args: [--fix, --exit-non-zero-on-fix, --show-fixes]
15-
- id: ruff-format

README.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,21 @@
11
Python:
22

33
[![PyPI version fury.io](https://badge.fury.io/py/devsetgo-lib.svg)](https://pypi.python.org/pypi/devsetgo-lib/)
4-
<a href="https://github.com/psf/black"><img alt="Code style: black" src="https://img.shields.io/badge/code%20style-black-000000.svg">
4+
[![Downloads](https://static.pepy.tech/badge/devsetgo-lib)](https://pepy.tech/project/devsetgo-lib)
5+
[![Downloads](https://static.pepy.tech/badge/devsetgo-lib/month)](https://pepy.tech/project/devsetgo-lib)
6+
[![Downloads](https://static.pepy.tech/badge/devsetgo-lib/week)](https://pepy.tech/project/devsetgo-lib)
7+
8+
Support Python Versions
9+
10+
![Static Badge](https://img.shields.io/badge/Python-3.12%20%7C%203.11%20%7C%203.10%20%7C%203.9-blue)
11+
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
512

6-
[![Python 3.9](https://img.shields.io/badge/python-3.9-blue.svg)](https://www.python.org/downloads/release/python-390/)
7-
[![Python 3.10](https://img.shields.io/badge/python-3.10-blue.svg)](https://www.python.org/downloads/release/python-3100/)
8-
[![Python 3.11](https://img.shields.io/badge/python-3.11-blue.svg)](https://www.python.org/downloads/release/python-3110/)
9-
[![Python 3.12](https://img.shields.io/badge/python-3.12-blue.svg)](https://www.python.org/downloads/release/python-3120/)
1013

1114
CI/CD Pipeline:
1215

1316
[![Testing - Main](https://github.com/devsetgo/devsetgo_lib/actions/workflows/testing.yml/badge.svg?branch=main)](https://github.com/devsetgo/devsetgo_lib/actions/workflows/testing.yml)
1417
[![Testing - Dev](https://github.com/devsetgo/devsetgo_lib/actions/workflows/testing.yml/badge.svg?branch=dev)](https://github.com/devsetgo/devsetgo_lib/actions/workflows/testing.yml)
18+
[![Coverage fury.io](coverage-badge.svg)](https://github.com/devsetgo/dsg_lib)
1519

1620
SonarCloud:
1721

@@ -22,6 +26,9 @@ SonarCloud:
2226
[![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=devsetgo_devsetgo_lib&metric=reliability_rating)](https://sonarcloud.io/dashboard?id=devsetgo_devsetgo_lib)
2327
[![Vulnerabilities](https://sonarcloud.io/api/project_badges/measure?project=devsetgo_devsetgo_lib&metric=vulnerabilities)](https://sonarcloud.io/dashboard?id=devsetgo_devsetgo_lib)
2428

29+
![Static Badge](https://img.shields.io/badge/Documentation-v0.12.2-blue?link=https%3A%2F%2Fdevsetgo.github.io%2Fdevsetgo_lib)
30+
31+
2532
# DevSetGo Common Library
2633

2734
## Introduction

coverage-badge.svg

Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)