Compare commits

..

15 Commits
sms ... main

Author SHA1 Message Date
9f14ae59ff Fix some issues
All checks were successful
Build and Push to Registry / build-and-push (push) Successful in 43s
2025-08-05 14:52:29 +02:00
omaroughriss
ce2c399055 Add allowed origin
All checks were successful
Build and Push to Registry / build-and-push (push) Successful in 33s
2025-07-24 12:59:04 +02:00
698256cd24 Fix some issues
All checks were successful
Build and Push to Registry / build-and-push (push) Successful in 32s
2025-07-23 15:26:15 +02:00
b6e089e00c Merge pull request 'Fix some issues' (#6) from main into dev
Reviewed-on: #6
2025-07-23 10:26:06 +00:00
5d7baeb433 Fix some issues
All checks were successful
Build and Push to Registry / build-and-push (push) Successful in 36s
2025-07-23 12:25:20 +02:00
1b522c0df4 Merge pull request 'stripe' (#5) from stripe into dev
Reviewed-on: #5
2025-07-23 09:28:55 +00:00
omaroughriss
462b978d86 Move Stripe feature to the main file 2025-07-23 11:26:08 +02:00
omaroughriss
fecde28049 Add Stripe feature 2025-07-22 17:27:44 +02:00
omaroughriss
ad26f210ed Rename main server just for now 2025-07-22 17:27:28 +02:00
omaroughriss
5db40fe9ca Add stripe dep 2025-07-22 17:27:04 +02:00
omaroughriss
6f24acb712 Add stripe config vars in .env 2025-07-22 17:26:52 +02:00
Omar Oughriss
3855c739bc Add mailchimp feature
All checks were successful
Build and Push to Registry / build-and-push (push) Successful in 30s
2025-07-18 17:02:13 +02:00
Omar Oughriss
4e8f1e2862 Add mailchimp dep 2025-07-18 17:01:09 +02:00
Omar Oughriss
c971232f88 Add mailchimp vars 2025-07-18 17:00:58 +02:00
9fab5882f9 Merge pull request 'sms' (#3) from sms into dev
Reviewed-on: #3
2025-07-18 14:13:25 +00:00
3 changed files with 735 additions and 168 deletions

View File

@ -7,5 +7,24 @@ OVH_SMS_SERVICE_NAME=
# Configuration SMS Factor
SMS_FACTOR_TOKEN=
#Configuration Mailchimp
MAILCHIMP_API_KEY=
MAILCHIMP_KEY=
MAILCHIMP_LIST_ID=
#Configuration Stripe
STRIPE_SECRET_KEY=
STRIPE_WEBHOOK_SECRET=
STRIPE_STANDARD_SUBSCRIPTION_PRICE_ID=
STRIPE_STANDARD_ANNUAL_SUBSCRIPTION_PRICE_ID=
STRIPE_UNLIMITED_SUBSCRIPTION_PRICE_ID=
STRIPE_UNLIMITED_ANNUAL_SUBSCRIPTION_PRICE_ID=
#Cartes de test Stripe
SUCCES= 4242 4242 4242 4242 #Paiement réussi
DECLINED= 4000 0025 0000 3155 #Paiement refusé
# Configuration serveur
APP_HOST=
PORT=

View File

@ -8,11 +8,14 @@
"dev": "nodemon src/server.js"
},
"dependencies": {
"@mailchimp/mailchimp_transactional": "^1.0.59",
"cors": "^2.8.5",
"dotenv": "^17.2.0",
"express": "^4.18.2",
"node-fetch": "^2.6.7",
"ovh": "^2.0.3"
"ovh": "^2.0.3",
"stripe": "^18.3.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"nodemon": "^3.0.1"

File diff suppressed because it is too large Load Diff