Skip to content

Commit 161b4ba

Browse files
committed
chore: 🎉 initial commit
0 parents  commit 161b4ba

File tree

14 files changed

+7590
-0
lines changed

14 files changed

+7590
-0
lines changed

.gitignore

Lines changed: 223 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,223 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/astro,node,windows,linux,macos
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=astro,node,windows,linux,macos
3+
4+
### Astro ###
5+
# Gitignore template for Astro projects
6+
# Ignore content collection generated files
7+
.astro
8+
9+
### Linux ###
10+
*~
11+
12+
# temporary files which can be created if a process still has a handle open of a deleted file
13+
.fuse_hidden*
14+
15+
# KDE directory preferences
16+
.directory
17+
18+
# Linux trash folder which might appear on any partition or disk
19+
.Trash-*
20+
21+
# .nfs files are created when an open file is removed but is still being accessed
22+
.nfs*
23+
24+
### macOS ###
25+
# General
26+
.DS_Store
27+
.AppleDouble
28+
.LSOverride
29+
30+
# Icon must end with two \r
31+
Icon
32+
33+
34+
# Thumbnails
35+
._*
36+
37+
# Files that might appear in the root of a volume
38+
.DocumentRevisions-V100
39+
.fseventsd
40+
.Spotlight-V100
41+
.TemporaryItems
42+
.Trashes
43+
.VolumeIcon.icns
44+
.com.apple.timemachine.donotpresent
45+
46+
# Directories potentially created on remote AFP share
47+
.AppleDB
48+
.AppleDesktop
49+
Network Trash Folder
50+
Temporary Items
51+
.apdisk
52+
53+
### macOS Patch ###
54+
# iCloud generated files
55+
*.icloud
56+
57+
### Node ###
58+
# Logs
59+
logs
60+
*.log
61+
npm-debug.log*
62+
yarn-debug.log*
63+
yarn-error.log*
64+
lerna-debug.log*
65+
.pnpm-debug.log*
66+
67+
# Diagnostic reports (https://nodejs.org/api/report.html)
68+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
69+
70+
# Runtime data
71+
pids
72+
*.pid
73+
*.seed
74+
*.pid.lock
75+
76+
# Directory for instrumented libs generated by jscoverage/JSCover
77+
lib-cov
78+
79+
# Coverage directory used by tools like istanbul
80+
coverage
81+
*.lcov
82+
83+
# nyc test coverage
84+
.nyc_output
85+
86+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
87+
.grunt
88+
89+
# Bower dependency directory (https://bower.io/)
90+
bower_components
91+
92+
# node-waf configuration
93+
.lock-wscript
94+
95+
# Compiled binary addons (https://nodejs.org/api/addons.html)
96+
build/Release
97+
98+
# Dependency directories
99+
node_modules/
100+
jspm_packages/
101+
102+
# Snowpack dependency directory (https://snowpack.dev/)
103+
web_modules/
104+
105+
# TypeScript cache
106+
*.tsbuildinfo
107+
108+
# Optional npm cache directory
109+
.npm
110+
111+
# Optional eslint cache
112+
.eslintcache
113+
114+
# Optional stylelint cache
115+
.stylelintcache
116+
117+
# Microbundle cache
118+
.rpt2_cache/
119+
.rts2_cache_cjs/
120+
.rts2_cache_es/
121+
.rts2_cache_umd/
122+
123+
# Optional REPL history
124+
.node_repl_history
125+
126+
# Output of 'npm pack'
127+
*.tgz
128+
129+
# Yarn Integrity file
130+
.yarn-integrity
131+
132+
# dotenv environment variable files
133+
.env
134+
.env.development.local
135+
.env.test.local
136+
.env.production.local
137+
.env.local
138+
139+
# parcel-bundler cache (https://parceljs.org/)
140+
.cache
141+
.parcel-cache
142+
143+
# Next.js build output
144+
.next
145+
out
146+
147+
# Nuxt.js build / generate output
148+
.nuxt
149+
dist
150+
151+
# Gatsby files
152+
.cache/
153+
# Comment in the public line in if your project uses Gatsby and not Next.js
154+
# https://nextjs.org/blog/next-9-1#public-directory-support
155+
# public
156+
157+
# vuepress build output
158+
.vuepress/dist
159+
160+
# vuepress v2.x temp and cache directory
161+
.temp
162+
163+
# Docusaurus cache and generated files
164+
.docusaurus
165+
166+
# Serverless directories
167+
.serverless/
168+
169+
# FuseBox cache
170+
.fusebox/
171+
172+
# DynamoDB Local files
173+
.dynamodb/
174+
175+
# TernJS port file
176+
.tern-port
177+
178+
# Stores VSCode versions used for testing VSCode extensions
179+
.vscode-test
180+
181+
# yarn v2
182+
.yarn/cache
183+
.yarn/unplugged
184+
.yarn/build-state.yml
185+
.yarn/install-state.gz
186+
.pnp.*
187+
188+
### Node Patch ###
189+
# Serverless Webpack directories
190+
.webpack/
191+
192+
# Optional stylelint cache
193+
194+
# SvelteKit build / generate output
195+
.svelte-kit
196+
197+
### Windows ###
198+
# Windows thumbnail cache files
199+
Thumbs.db
200+
Thumbs.db:encryptable
201+
ehthumbs.db
202+
ehthumbs_vista.db
203+
204+
# Dump file
205+
*.stackdump
206+
207+
# Folder config file
208+
[Dd]esktop.ini
209+
210+
# Recycle Bin used on file shares
211+
$RECYCLE.BIN/
212+
213+
# Windows Installer files
214+
*.cab
215+
*.msi
216+
*.msix
217+
*.msm
218+
*.msp
219+
220+
# Windows shortcuts
221+
*.lnk
222+
223+
# End of https://www.toptal.com/developers/gitignore/api/astro,node,windows,linux,macos

.vscode/extensions.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"recommendations": ["astro-build.astro-vscode"],
3+
"unwantedRecommendations": []
4+
}

.vscode/launch.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"command": "./node_modules/.bin/astro dev",
6+
"name": "Development server",
7+
"request": "launch",
8+
"type": "node-terminal"
9+
}
10+
]
11+
}

README.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Vue JS Colombia - Website
2+
3+
This is the repository for the Vue JS Colombia website. It is built using [Astro](https://astro.build/), [Vue](https://vuejs.org/), and [Tailwind CSS](https://tailwindcss.com/).
4+
5+
## 🚀 Project Structure
6+
7+
Inside of your Astro project, you'll see the following folders and files:
8+
9+
```text
10+
/
11+
├── public/
12+
│ └── favicon.svg
13+
├── src/
14+
│ ├── components/
15+
│ │ └── Card.astro
16+
│ ├── layouts/
17+
│ │ └── Layout.astro
18+
│ └── pages/
19+
│ └── index.astro
20+
└── package.json
21+
```
22+
23+
Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
24+
25+
There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
26+
27+
Any static assets, like images, can be placed in the `public/` directory.
28+
29+
## 🧞 Commands
30+
31+
All commands are run from the root of the project, from a terminal:
32+
33+
| Command | Action |
34+
| :------------------------ | :----------------------------------------------- |
35+
| `npm install` | Installs dependencies |
36+
| `npm run dev` | Starts local dev server at `localhost:4321` |
37+
| `npm run build` | Build your production site to `./dist/` |
38+
| `npm run preview` | Preview your build locally, before deploying |
39+
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
40+
| `npm run astro -- --help` | Get help using the Astro CLI |
41+
42+
## 👀 Want to learn more?
43+
44+
Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).

astro.config.mjs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import sitemap from '@astrojs/sitemap';
2+
import tailwind from '@astrojs/tailwind';
3+
import vue from '@astrojs/vue';
4+
5+
import { defineConfig } from 'astro/config';
6+
7+
export default defineConfig({
8+
site: 'https://vuejsco.com',
9+
base: '/',
10+
integrations: [tailwind(), vue(), sitemap()],
11+
});

0 commit comments

Comments
 (0)