Skip to content

Commit b82f4c9

Browse files
committed
chore: updated readme.md
1 parent 4165793 commit b82f4c9

File tree

1 file changed

+52
-8
lines changed

1 file changed

+52
-8
lines changed

README.md

Lines changed: 52 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,58 @@
1-
# Astro Starter Kit: Minimal
1+
# CVfolio
22

3+
**Welcome to CVfolio!**. CVfolio is an minimalistic and aesthetic Astro template for developers and designers to showcase their professional journey, portfolio, and expertise in a modern, fast-loading website.
4+
5+
The source code is still being worked on, so **it's important to share it** with you so we can get feedback and constantly improve it.
6+
7+
Over time, we've managed to add features and improve the design. There are still some things left to do, but the most important thing is that there's an opportunity for this project to be **community-driven**.
8+
9+
- Telegram group: **[Cvfolio »](https://t.me/+5xVGgQ9aQOk1ZmNh)**
10+
- Follow us on X at **[@coderdiaz »](https://x.com/coderdiaz)**
11+
- Wish to contribute? Here is how:
12+
13+
## Installation
14+
15+
Cvfolio is built on top of Astro and uses TailwindCSS for generate the website. If you are familiar with Astro, you should feel right at home.
16+
17+
In terms of local development, you can use the following requirements:
18+
- Node.js - v18.17.1 or v20.3.0, v22.0.0 or higher.
19+
20+
If you have these requirements, you can start by cloning the repository and installing the dependencies:
21+
22+
```sh
23+
git clone https://github.com/coderdiaz-studio/cvfolio.git
24+
25+
cd cvfolio
26+
27+
git checkout -b feat/your-feature # or fix/your-fix
28+
```
29+
30+
> Don't push directly to the main branch. Instead, create a new branch and push it to your branch.
31+
32+
Next, install the dependencies using Bun or NPM:
33+
34+
```sh
35+
bun install
36+
37+
# npm
38+
npm install
39+
```
40+
41+
Finally, start the development server:
42+
43+
```sh
44+
bun dev
45+
```
46+
47+
If everything is OK, push your branch and create a pull request:
348
```sh
4-
bun create astro@latest -- --template minimal
49+
git commit -am "Your commit message"
50+
51+
git push
552
```
653

7-
[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/astro/tree/latest/examples/minimal)
8-
[![Open with CodeSandbox](https://assets.codesandbox.io/github/button-edit-lime.svg)](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/minimal)
9-
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/withastro/astro?devcontainer_path=.devcontainer/minimal/devcontainer.json)
54+
Visit [github.com/coderdiaz-studio/cvfolio/pulls](https://github.com/coderdiaz-studio/cvfolio/pulls) and create a pull request.
1055

11-
> 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun!
1256

1357
## 🚀 Project Structure
1458

@@ -23,7 +67,7 @@ Inside of your Astro project, you'll see the following folders and files:
2367
└── package.json
2468
```
2569

26-
Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
70+
Astro looks for `.astro` or `.md`, `.mdx` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
2771

2872
There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
2973

@@ -44,4 +88,4 @@ All commands are run from the root of the project, from a terminal:
4488

4589
## 👀 Want to learn more?
4690

47-
Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).
91+
Feel free to check [Astro documentation](https://docs.astro.build).

0 commit comments

Comments
 (0)