You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+52-8Lines changed: 52 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,58 @@
1
-
# Astro Starter Kit: Minimal
1
+
# CVfolio
2
2
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**.
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:
3
48
```sh
4
-
bun create astro@latest -- --template minimal
49
+
git commit -am "Your commit message"
50
+
51
+
git push
5
52
```
6
53
7
-
[](https://stackblitz.com/github/withastro/astro/tree/latest/examples/minimal)
8
-
[](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/minimal)
9
-
[](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.
10
55
11
-
> 🧑🚀 **Seasoned astronaut?** Delete this file. Have fun!
12
56
13
57
## 🚀 Project Structure
14
58
@@ -23,7 +67,7 @@ Inside of your Astro project, you'll see the following folders and files:
23
67
└── package.json
24
68
```
25
69
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.
27
71
28
72
There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
29
73
@@ -44,4 +88,4 @@ All commands are run from the root of the project, from a terminal:
44
88
45
89
## 👀 Want to learn more?
46
90
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