Skip to content

Commit 1213665

Browse files
committed
Initial commit
0 parents  commit 1213665

File tree

9 files changed

+1435
-0
lines changed

9 files changed

+1435
-0
lines changed

.env.example

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# 🔑 Example SMS Gate API Credentials
2+
SMS_GATE_API_URL="https://api.sms-gate.app/3rdparty/v1" # API root endpoint (optional)
3+
SMS_GATE_API_USERNAME="test_user" # API username
4+
SMS_GATE_API_PASSWORD="test_password" # API password
5+
6+
# 🔒 Example Webhook Security
7+
WEBHOOK_SECRET="your_test_secret_here" # signing key (optional)
8+
WEBHOOK_URL="https://localhost:8443/webhook/sms-received" # current server endpoint
9+
10+
# 🛡️ SSL Configuration
11+
SSL_CERT_PATH="./certs/server.crt" # SSL certificate (optional)
12+
SSL_KEY_PATH="./certs/server.key" # SSL private key (optional)

.gitignore

Lines changed: 283 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,283 @@
1+
# File created using '.gitignore Generator' for Visual Studio Code: https://bit.ly/vscode-gig
2+
# Created by https://www.toptal.com/developers/gitignore/api/windows,visualstudiocode,python,macos,linux,dotenv,certificates
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=windows,visualstudiocode,python,macos,linux,dotenv,certificates
4+
5+
### certificates ###
6+
*.pem
7+
*.key
8+
*.crt
9+
*.cer
10+
*.der
11+
*.priv
12+
13+
### dotenv ###
14+
.env
15+
16+
### Linux ###
17+
*~
18+
19+
# temporary files which can be created if a process still has a handle open of a deleted file
20+
.fuse_hidden*
21+
22+
# KDE directory preferences
23+
.directory
24+
25+
# Linux trash folder which might appear on any partition or disk
26+
.Trash-*
27+
28+
# .nfs files are created when an open file is removed but is still being accessed
29+
.nfs*
30+
31+
### macOS ###
32+
# General
33+
.DS_Store
34+
.AppleDouble
35+
.LSOverride
36+
37+
# Icon must end with two \r
38+
Icon
39+
40+
41+
# Thumbnails
42+
._*
43+
44+
# Files that might appear in the root of a volume
45+
.DocumentRevisions-V100
46+
.fseventsd
47+
.Spotlight-V100
48+
.TemporaryItems
49+
.Trashes
50+
.VolumeIcon.icns
51+
.com.apple.timemachine.donotpresent
52+
53+
# Directories potentially created on remote AFP share
54+
.AppleDB
55+
.AppleDesktop
56+
Network Trash Folder
57+
Temporary Items
58+
.apdisk
59+
60+
### macOS Patch ###
61+
# iCloud generated files
62+
*.icloud
63+
64+
### Python ###
65+
# Byte-compiled / optimized / DLL files
66+
__pycache__/
67+
*.py[cod]
68+
*$py.class
69+
70+
# C extensions
71+
*.so
72+
73+
# Distribution / packaging
74+
.Python
75+
build/
76+
develop-eggs/
77+
dist/
78+
downloads/
79+
eggs/
80+
.eggs/
81+
lib/
82+
lib64/
83+
parts/
84+
sdist/
85+
var/
86+
wheels/
87+
share/python-wheels/
88+
*.egg-info/
89+
.installed.cfg
90+
*.egg
91+
MANIFEST
92+
93+
# PyInstaller
94+
# Usually these files are written by a python script from a template
95+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
96+
*.manifest
97+
*.spec
98+
99+
# Installer logs
100+
pip-log.txt
101+
pip-delete-this-directory.txt
102+
103+
# Unit test / coverage reports
104+
htmlcov/
105+
.tox/
106+
.nox/
107+
.coverage
108+
.coverage.*
109+
.cache
110+
nosetests.xml
111+
coverage.xml
112+
*.cover
113+
*.py,cover
114+
.hypothesis/
115+
.pytest_cache/
116+
cover/
117+
118+
# Translations
119+
*.mo
120+
*.pot
121+
122+
# Django stuff:
123+
*.log
124+
local_settings.py
125+
db.sqlite3
126+
db.sqlite3-journal
127+
128+
# Flask stuff:
129+
instance/
130+
.webassets-cache
131+
132+
# Scrapy stuff:
133+
.scrapy
134+
135+
# Sphinx documentation
136+
docs/_build/
137+
138+
# PyBuilder
139+
.pybuilder/
140+
target/
141+
142+
# Jupyter Notebook
143+
.ipynb_checkpoints
144+
145+
# IPython
146+
profile_default/
147+
ipython_config.py
148+
149+
# pyenv
150+
# For a library or package, you might want to ignore these files since the code is
151+
# intended to run in multiple environments; otherwise, check them in:
152+
# .python-version
153+
154+
# pipenv
155+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
156+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
157+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
158+
# install all needed dependencies.
159+
#Pipfile.lock
160+
161+
# poetry
162+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
163+
# This is especially recommended for binary packages to ensure reproducibility, and is more
164+
# commonly ignored for libraries.
165+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
166+
#poetry.lock
167+
168+
# pdm
169+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
170+
#pdm.lock
171+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
172+
# in version control.
173+
# https://pdm.fming.dev/#use-with-ide
174+
.pdm.toml
175+
176+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
177+
__pypackages__/
178+
179+
# Celery stuff
180+
celerybeat-schedule
181+
celerybeat.pid
182+
183+
# SageMath parsed files
184+
*.sage.py
185+
186+
# Environments
187+
.venv
188+
env/
189+
venv/
190+
ENV/
191+
env.bak/
192+
venv.bak/
193+
194+
# Spyder project settings
195+
.spyderproject
196+
.spyproject
197+
198+
# Rope project settings
199+
.ropeproject
200+
201+
# mkdocs documentation
202+
/site
203+
204+
# mypy
205+
.mypy_cache/
206+
.dmypy.json
207+
dmypy.json
208+
209+
# Pyre type checker
210+
.pyre/
211+
212+
# pytype static type analyzer
213+
.pytype/
214+
215+
# Cython debug symbols
216+
cython_debug/
217+
218+
# PyCharm
219+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
220+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
221+
# and can be added to the global gitignore or merged into this file. For a more nuclear
222+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
223+
#.idea/
224+
225+
### Python Patch ###
226+
# Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
227+
poetry.toml
228+
229+
# ruff
230+
.ruff_cache/
231+
232+
# LSP config files
233+
pyrightconfig.json
234+
235+
### VisualStudioCode ###
236+
.vscode/*
237+
!.vscode/settings.json
238+
!.vscode/tasks.json
239+
!.vscode/launch.json
240+
!.vscode/extensions.json
241+
!.vscode/*.code-snippets
242+
243+
# Local History for Visual Studio Code
244+
.history/
245+
246+
# Built Visual Studio Code Extensions
247+
*.vsix
248+
249+
### VisualStudioCode Patch ###
250+
# Ignore all local history of files
251+
.history
252+
.ionide
253+
254+
### Windows ###
255+
# Windows thumbnail cache files
256+
Thumbs.db
257+
Thumbs.db:encryptable
258+
ehthumbs.db
259+
ehthumbs_vista.db
260+
261+
# Dump file
262+
*.stackdump
263+
264+
# Folder config file
265+
[Dd]esktop.ini
266+
267+
# Recycle Bin used on file shares
268+
$RECYCLE.BIN/
269+
270+
# Windows Installer files
271+
*.cab
272+
*.msi
273+
*.msix
274+
*.msm
275+
*.msp
276+
277+
# Windows shortcuts
278+
*.lnk
279+
280+
# End of https://www.toptal.com/developers/gitignore/api/windows,visualstudiocode,python,macos,linux,dotenv,certificates
281+
282+
# Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)
283+

0 commit comments

Comments
 (0)