Compare commits
5 Commits
0781d78724
...
1.0.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6ac9454004 | ||
|
|
f7aefd87e4 | ||
|
|
5eecbbf8a3 | ||
|
|
5732f1ed21 | ||
|
|
25d07b1ce9 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,3 +1,4 @@
|
||||
.idea
|
||||
src/dist/
|
||||
src/node_modules/
|
||||
src/package-lock.json
|
||||
|
||||
8
.idea/.gitignore
generated
vendored
8
.idea/.gitignore
generated
vendored
@@ -1,8 +0,0 @@
|
||||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
# Editor-based HTTP Client requests
|
||||
/httpRequests/
|
||||
# Datasource local storage ignored files
|
||||
/dataSources/
|
||||
/dataSources.local.xml
|
||||
6
.idea/inspectionProfiles/Project_Default.xml
generated
6
.idea/inspectionProfiles/Project_Default.xml
generated
@@ -1,6 +0,0 @@
|
||||
<component name="InspectionProjectProfileManager">
|
||||
<profile version="1.0">
|
||||
<option name="myName" value="Project Default" />
|
||||
<inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" />
|
||||
</profile>
|
||||
</component>
|
||||
8
.idea/modules.xml
generated
8
.idea/modules.xml
generated
@@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/site.iml" filepath="$PROJECT_DIR$/.idea/site.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
||||
12
.idea/site.iml
generated
12
.idea/site.iml
generated
@@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="WEB_MODULE" version="4">
|
||||
<component name="NewModuleRootManager">
|
||||
<content url="file://$MODULE_DIR$">
|
||||
<excludeFolder url="file://$MODULE_DIR$/.tmp" />
|
||||
<excludeFolder url="file://$MODULE_DIR$/temp" />
|
||||
<excludeFolder url="file://$MODULE_DIR$/tmp" />
|
||||
</content>
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
</component>
|
||||
</module>
|
||||
6
.idea/vcs.xml
generated
6
.idea/vcs.xml
generated
@@ -1,6 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "web-app",
|
||||
"type": "module",
|
||||
"version": "0.0.1",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "vite --host :: --port 3000",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import React from 'react';
|
||||
import { ShoppingBag, Edit2, Music, Send } from 'lucide-react';
|
||||
export const STRIPE_PUBLISHABLE_KEY = import.meta.env.VITE_STRIPE_PUBLISHABLE_KEY_DEV;
|
||||
export const STRIPE_PUBLISHABLE_KEY = import.meta.env.VITE_STRIPE_PUBLISHABLE_KEY;
|
||||
|
||||
export const products = [
|
||||
{
|
||||
@@ -38,15 +38,15 @@ import React from 'react';
|
||||
stripePriceId: 'price_1RVTXtEPL3QASpovaWjXf30q',
|
||||
description: 'Un texte de chanson unique, écrit sur mesure pour vous.',
|
||||
imageUrl: 'https://files.dites-le-en-chanson.fr/products/texte-personalise.jpg'
|
||||
},
|
||||
{
|
||||
id: 'prod_SQMCFqFLaNHxx0',
|
||||
name: 'Test',
|
||||
price: 17.90,
|
||||
promotionPrice: null,
|
||||
stripePriceId: 'price_1RVVUBERAUBjYKpgYuQyuI76',
|
||||
description: 'Un texte de chanson unique, écrit sur mesure pour vous.',
|
||||
imageUrl: 'https://files.dites-le-en-chanson.fr/products/texte-personalise.jpg'
|
||||
// },
|
||||
// {
|
||||
// id: 'prod_SQMCFqFLaNHxx0',
|
||||
// name: 'Test',
|
||||
// price: 17.90,
|
||||
// promotionPrice: null,
|
||||
// stripePriceId: 'price_1RVVUBERAUBjYKpgYuQyuI76',
|
||||
// description: 'Un texte de chanson unique, écrit sur mesure pour vous.',
|
||||
// imageUrl: 'https://files.dites-le-en-chanson.fr/products/texte-personalise.jpg'
|
||||
}
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user