Skip to content

Commit 2ba8ec1

Browse files
chore: initialize project with Prisma SQLite configuration and basic gitignore
1 parent 60f301c commit 2ba8ec1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+10079
-2532
lines changed

.env

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Environment variables declared in this file are automatically made available to Prisma.
2+
# See the documentation for more detail: https://pris.ly/d/prisma-schema#accessing-environment-variables-from-the-schema
3+
4+
# Prisma supports the native connection string format for PostgreSQL, MySQL, SQLite, SQL Server, MongoDB and CockroachDB.
5+
# See the documentation for all the connection string options: https://pris.ly/d/connection-strings
6+
7+
DATABASE_URL="file:./dev.db"

.gitignore

Lines changed: 23 additions & 272 deletions
Original file line numberDiff line numberDiff line change
@@ -1,275 +1,26 @@
1-
# ENV Storage Manager - .gitignore
2-
3-
# ===== CRITICAL: Never commit these! =====
4-
# Vault files and encrypted storage
5-
*.vault
6-
*.enc
7-
*.encrypted
8-
vault/
9-
storage/
10-
.env_storage/
11-
12-
# Environment files
13-
.env
14-
.env.local
15-
.env.*.local
16-
*.env
17-
18-
# Master password files
19-
master_password*
20-
.password
21-
.key
22-
23-
# ===== Python =====
24-
# Byte-compiled / optimized / DLL files
25-
__pycache__/
26-
*.py[cod]
27-
*$py.class
28-
29-
# C extensions
30-
*.so
31-
32-
# Distribution / packaging
33-
.Python
34-
build/
35-
develop-eggs/
36-
dist/
37-
downloads/
38-
eggs/
39-
.eggs/
40-
lib/
41-
lib64/
42-
parts/
43-
sdist/
44-
var/
45-
wheels/
46-
share/python-wheels/
47-
*.egg-info/
48-
.installed.cfg
49-
*.egg
50-
MANIFEST
51-
52-
# PyInstaller
53-
*.manifest
54-
*.spec
55-
56-
# Installer logs
57-
pip-log.txt
58-
pip-delete-this-directory.txt
59-
60-
# Unit test / coverage reports
61-
htmlcov/
62-
.tox/
63-
.nox/
64-
.coverage
65-
.coverage.*
66-
.cache
67-
nosetests.xml
68-
coverage.xml
69-
*.cover
70-
*.py,cover
71-
.hypothesis/
72-
.pytest_cache/
73-
cover/
74-
75-
# Translations
76-
*.mo
77-
*.pot
78-
79-
# Django stuff:
1+
# Logs
2+
logs
803
*.log
81-
local_settings.py
82-
db.sqlite3
83-
db.sqlite3-journal
84-
85-
# Flask stuff:
86-
instance/
87-
.webassets-cache
88-
89-
# Scrapy stuff:
90-
.scrapy
91-
92-
# Sphinx documentation
93-
docs/_build/
94-
95-
# PyBuilder
96-
.pybuilder/
97-
target/
98-
99-
# Jupyter Notebook
100-
.ipynb_checkpoints
101-
102-
# IPython
103-
profile_default/
104-
ipython_config.py
105-
106-
# pyenv
107-
.python-version
108-
109-
# pipenv
110-
Pipfile.lock
111-
112-
# poetry
113-
poetry.lock
114-
115-
# pdm
116-
.pdm.toml
117-
118-
# PEP 582
119-
__pypackages__/
120-
121-
# Celery stuff
122-
celerybeat-schedule
123-
celerybeat.pid
124-
125-
# SageMath parsed files
126-
*.sage.py
127-
128-
# Environments
129-
.env
130-
.venv
131-
env/
132-
venv/
133-
ENV/
134-
env.bak/
135-
venv.bak/
136-
137-
# Spyder project settings
138-
.spyderproject
139-
.spyproject
140-
141-
# Rope project settings
142-
.ropeproject
143-
144-
# mkdocs documentation
145-
/site
146-
147-
# mypy
148-
.mypy_cache/
149-
.dmypy.json
150-
dmypy.json
151-
152-
# Pyre type checker
153-
.pyre/
154-
155-
# pytype static type analyzer
156-
.pytype/
157-
158-
# Cython debug symbols
159-
cython_debug/
160-
161-
# ===== IDEs =====
162-
# VSCode
163-
.vscode/
164-
*.code-workspace
165-
166-
# PyCharm
167-
.idea/
168-
*.iml
169-
*.iws
170-
*.ipr
171-
172-
# Sublime Text
173-
*.sublime-project
174-
*.sublime-workspace
175-
176-
# Vim
177-
*.swp
178-
*.swo
179-
*~
180-
181-
# Emacs
182-
*~
183-
\#*\#
184-
.\#*
185-
186-
# ===== Operating Systems =====
187-
# macOS
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
18819
.DS_Store
189-
.AppleDouble
190-
.LSOverride
191-
Icon
192-
._*
193-
.DocumentRevisions-V100
194-
.fseventsd
195-
.Spotlight-V100
196-
.TemporaryItems
197-
.Trashes
198-
.VolumeIcon.icns
199-
.com.apple.timemachine.donotpresent
200-
.AppleDB
201-
.AppleDesktop
202-
Network Trash Folder
203-
Temporary Items
204-
.apdisk
205-
206-
# Windows
207-
Thumbs.db
208-
Thumbs.db:encryptable
209-
ehthumbs.db
210-
ehthumbs_vista.db
211-
*.stackdump
212-
[Dd]esktop.ini
213-
$RECYCLE.BIN/
214-
*.cab
215-
*.msi
216-
*.msix
217-
*.msm
218-
*.msp
219-
*.lnk
220-
221-
# Linux
222-
*~
223-
.directory
224-
.Trash-*
225-
.nfs*
226-
227-
# ===== Databases =====
228-
*.db
229-
*.sqlite
230-
*.sqlite3
231-
*.db-shm
232-
*.db-wal
233-
234-
# ===== Logs =====
235-
*.log
236-
logs/
237-
*.log.*
238-
239-
# ===== Temporary files =====
240-
tmp/
241-
temp/
242-
*.tmp
243-
*.temp
244-
*.bak
245-
*.backup
246-
247-
# ===== Security =====
248-
*.pem
249-
*.key
250-
*.crt
251-
*.cer
252-
*.p12
253-
*.pfx
254-
secrets/
255-
credentials/
256-
257-
# ===== Project Specific =====
258-
# Test data
259-
test_vault/
260-
test_data/
261-
sample_secrets/
262-
263-
# Build artifacts
264-
*.pyc
265-
*.pyo
266-
267-
# Documentation builds
268-
docs/_build/
269-
docs/_static/
270-
docs/_templates/
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?
27125

272-
# Configuration
273-
config.local.json
274-
config.local.yaml
275-
local_config.*
26+
/generated/prisma

.pre-commit-config.yaml

Lines changed: 0 additions & 49 deletions
This file was deleted.

0 commit comments

Comments
 (0)