Compare commits
3 Commits
e74ce0aabc
...
d9daa00b32
| Author | SHA1 | Date | |
|---|---|---|---|
| d9daa00b32 | |||
| 31b88865d7 | |||
| cd4a971d8d |
@ -1 +1,5 @@
|
|||||||
BOOTSTRAPURL=
|
VITE_BASEURL="your_base_url"
|
||||||
|
VITE_BOOTSTRAPURL="your_bootstrap_url"
|
||||||
|
VITE_STORAGEURL="your_storage_url"
|
||||||
|
VITE_BLINDBITURL="your_blindbit_url"
|
||||||
|
VITE_JWT_SECRET_KEY="your_secret_key"
|
||||||
97
.gitignore
vendored
97
.gitignore
vendored
@ -1,8 +1,103 @@
|
|||||||
|
# ----------------------------
|
||||||
|
# 🦀 Rust
|
||||||
|
# ----------------------------
|
||||||
target/
|
target/
|
||||||
pkg/
|
pkg/
|
||||||
Cargo.lock
|
Cargo.lock
|
||||||
|
*.rs.bk
|
||||||
|
**/*.rlib
|
||||||
|
|
||||||
|
# ----------------------------
|
||||||
|
# 🧰 Node / Frontend
|
||||||
|
# ----------------------------
|
||||||
node_modules/
|
node_modules/
|
||||||
dist/
|
dist/
|
||||||
.vscode
|
build/
|
||||||
|
.cache/
|
||||||
|
.next/
|
||||||
|
out/
|
||||||
|
.tmp/
|
||||||
|
temp/
|
||||||
|
*.log
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
pnpm-debug.log*
|
||||||
|
package-lock.json
|
||||||
|
yarn.lock
|
||||||
|
pnpm-lock.yaml
|
||||||
|
|
||||||
|
# ----------------------------
|
||||||
|
# 🧱 IDE / Éditeurs
|
||||||
|
# ----------------------------
|
||||||
|
.vscode/
|
||||||
|
.idea/
|
||||||
|
*.iml
|
||||||
|
*.suo
|
||||||
|
*.ntvs*
|
||||||
|
*.njsproj
|
||||||
|
*.sln
|
||||||
|
*.sw?
|
||||||
|
*.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
|
||||||
|
# ----------------------------
|
||||||
|
# ⚙️ Environnements / Secrets
|
||||||
|
# ----------------------------
|
||||||
.env
|
.env
|
||||||
|
.env.local
|
||||||
|
.env.development.local
|
||||||
|
.env.production.local
|
||||||
|
.env.test.local
|
||||||
|
*.pem
|
||||||
|
*.crt
|
||||||
|
*.key
|
||||||
|
|
||||||
|
# ----------------------------
|
||||||
|
# 🌐 SSL / Certificats
|
||||||
|
# ----------------------------
|
||||||
public/ssl/
|
public/ssl/
|
||||||
|
certs/
|
||||||
|
keys/
|
||||||
|
|
||||||
|
# ----------------------------
|
||||||
|
# 📦 Compilations WebAssembly
|
||||||
|
# ----------------------------
|
||||||
|
wasm-pack.log
|
||||||
|
*.wasm
|
||||||
|
|
||||||
|
# ----------------------------
|
||||||
|
# 🧪 Tests / Coverage
|
||||||
|
# ----------------------------
|
||||||
|
coverage/
|
||||||
|
lcov-report/
|
||||||
|
.nyc_output/
|
||||||
|
jest-cache/
|
||||||
|
jest-results.json
|
||||||
|
|
||||||
|
# ----------------------------
|
||||||
|
# 🧍 Runtime / OS / Divers
|
||||||
|
# ----------------------------
|
||||||
|
*.pid
|
||||||
|
*.seed
|
||||||
|
*.pid.lock
|
||||||
|
*.bak
|
||||||
|
*.orig
|
||||||
|
*.rej
|
||||||
|
|
||||||
|
# ----------------------------
|
||||||
|
# 🧠 Logs / Debug / Dump
|
||||||
|
# ----------------------------
|
||||||
|
*.log
|
||||||
|
*.stackdump
|
||||||
|
*.dmp
|
||||||
|
debug.log
|
||||||
|
error.log
|
||||||
|
|
||||||
|
# ----------------------------
|
||||||
|
# 🚀 Deploy / Production builds
|
||||||
|
# ----------------------------
|
||||||
|
.vercel/
|
||||||
|
.netlify/
|
||||||
|
firebase/
|
||||||
|
functions/lib/
|
||||||
|
|||||||
7367
package-lock.json
generated
7367
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user