ajouter des fichiers .db à .gitignore et mettre à jour le README.md avec des informations sur l'application FormCraft

This commit is contained in:
Puechberty Arthur
2026-03-30 22:54:21 +02:00
parent e68451613f
commit 4c3809a043
2 changed files with 56 additions and 20 deletions
+2
View File
@@ -43,6 +43,8 @@ next-env.d.ts
/src/generated/prisma /src/generated/prisma
# prisma / sqlite local databases # prisma / sqlite local databases
/dev.db
/dev.db-*
prisma/*.db prisma/*.db
prisma/*.db-* prisma/*.db-*
prisma/data/*.db prisma/data/*.db
+54 -20
View File
@@ -1,36 +1,70 @@
This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app). # FormCraft
## Getting Started FormCraft est une application de creation de formulaires en ligne.
First, run the development server: Site en production : [https://form.arthurp.fr](https://form.arthurp.fr)
## A propos
FormCraft permet de :
- creer un formulaire public en quelques secondes
- partager un lien public
- consulter les reponses collectees
- supprimer un formulaire via une cle secrete
Pour decouvrir l'application, visiter [form.arthurp.fr](https://form.arthurp.fr).
## Stack technique
- Next.js 16 (App Router)
- React 19
- TypeScript
- Prisma
- SQLite (developpement local)
## Lancer en local
Prerequis :
- Node.js 18+
- npm
Installation et lancement :
```bash ```bash
npm install
npm run dev npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
``` ```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. Application disponible sur [http://localhost:3000](http://localhost:3000).
You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file. ## Variables d'environnement
This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel. Le projet utilise une variable Prisma :
## Learn More ```env
DATABASE_URL="file:./dev.db"
```
To learn more about Next.js, take a look at the following resources: Le fichier `.env` est ignore par Git.
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. ## Deploiement
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome! Build de production :
## Deploy on Vercel ```bash
npm run build
npm run start
```
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. Avant publication GitHub :
Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details. - verifier que `.env`, `.vscode/`, `node_modules/`, `.next/` et les bases SQLite locales ne sont pas suivis
- verifier qu'aucune cle API ou secret n'est commite
## Liens utiles
- Application : [https://form.arthurp.fr](https://form.arthurp.fr)
- Page d'accueil FormCraft : [https://form.arthurp.fr](https://form.arthurp.fr)
- Next.js : [https://nextjs.org](https://nextjs.org)