Skip to content

Commit 6bb9502

Browse files
committed
Update README.md (and Prettier Config)
1 parent 4c44070 commit 6bb9502

2 files changed

Lines changed: 28 additions & 18 deletions

File tree

README.md

Lines changed: 24 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,36 @@
1-
# Create T3 App
1+
# Drive Tutorial - Building a Google Drive Clone
22

3-
This is a [T3 Stack](https://create.t3.gg/) project bootstrapped with `create-t3-app`.
3+
A _Google Drive Clone_ built with the latest tools and technologies of the Web
4+
Development industry. 🗂️☁️
45

5-
## What's next? How do I make an app with this?
6+
> This project is inspired by a YouTube tutorial of [Theo](https://x.com/theo).
7+
> Check out [this link](https://www.youtube.com/watch?v=d5x0JCZbAJs) to watch
8+
> the full video.
69
7-
We try to keep this project as simple as possible, so you can start with just the scaffolding we set up for you, and add additional things later when they become necessary.
10+
## About This Project
811

9-
If you are not familiar with the different technologies used in this project, please refer to the respective docs. If you still are in the wind, please join our [Discord](https://t3.gg/discord) and ask for help.
12+
This project utilizes the [T3 Stack](https://create.t3.gg/) and was initialized
13+
with `create-t3-app`. It demonstrates a modern, high-performance approach to
14+
application development through seamless integration of cutting-edge tools and
15+
technologies.
16+
17+
For more information about the technologies used in this project, consult the
18+
official documentation linked below. Additional support is available via the
19+
[T3 Community Discord](https://t3.gg/discord).
1020

1121
- [Next.js](https://nextjs.org)
12-
- [NextAuth.js](https://next-auth.js.org)
13-
- [Prisma](https://prisma.io)
1422
- [Drizzle](https://orm.drizzle.team)
1523
- [Tailwind CSS](https://tailwindcss.com)
16-
- [tRPC](https://trpc.io)
17-
18-
## Learn More
19-
20-
To learn more about the [T3 Stack](https://create.t3.gg/), take a look at the following resources:
2124

22-
- [Documentation](https://create.t3.gg/)
23-
- [Learn the T3 Stack](https://create.t3.gg/en/faq#what-learning-resources-are-currently-available) — Check out these awesome tutorials
25+
### Learn More about the T3 Stack
2426

25-
You can check out the [create-t3-app GitHub repository](https://github.com/t3-oss/create-t3-app) — your feedback and contributions are welcome!
27+
To explore more about the [T3 Stack](https://create.t3.gg/), refer to the
28+
following resources:
2629

27-
## How do I deploy this?
30+
- [Official Documentation](https://create.t3.gg/)
31+
- [Learning Resources](https://create.t3.gg/en/faq#what-learning-resources-are-currently-available)
32+
— A collection of awesome tutorials
2833

29-
Follow our deployment guides for [Vercel](https://create.t3.gg/en/deployment/vercel), [Netlify](https://create.t3.gg/en/deployment/netlify) and [Docker](https://create.t3.gg/en/deployment/docker) for more information.
34+
Visit the
35+
[create-t3-app GitHub repository](https://github.com/t3-oss/create-t3-app) for
36+
feedback and contributions.

prettier.config.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
/** @type {import('prettier').Config & import('prettier-plugin-tailwindcss').PluginOptions} */
2-
export default {
2+
const config = {
33
plugins: ["prettier-plugin-tailwindcss"],
4+
overrides: [{ files: ["**/*.md"], options: { proseWrap: "always" } }],
45
};
6+
7+
export default config;

0 commit comments

Comments
 (0)