npm install
npm run dev
contribute
on the project pageopen a pull request
src/datas
folderdatas
folderdatas
folder, go to the skills
folder{
title: 'Write title of the resource here',
description: 'Add a low description',
path: 'Share the path of the resource here'
}
src/datas
folderdatas
folderevents.ts
file{
title: 'Write title of the meetup here',
description: 'Add a low description',
path: 'Share the path of the meetup here',
location: {
city: 'Write the city of the meetup here',
coordinates: [latitude of city, longitude of city]
},
}
src/datas
folderdatas
folderpodcasts.ts
file{
title: 'Write title of the podcast here',
description: 'Add a low description',
path: 'Share the path of the podcast here'
}
src/datas
folderdatas
folderconferences
folder{
title: 'Write title of the conference here',
description: 'Add a low description',
path: 'Share the path of the conference here',
location: {
city: 'Write the city of the conference here',
address: 'Write the address of the conference here',
coordinates: [latitude, longitude]
},
}
src/datas
folder/!\ Create an event around web development with conferences ONLY IF NOT EXISTS
1 - First, you need to create a folder
datas
folderconferences
folderAFUP
AFUPconferences.ts
{
title: 'Write title of the conference here',
description: 'Add a low description',
path: 'Share the path of the conference here',
location: {
city: 'Write the city of the conference here',
address: 'Write the address of the conference here',
coordinates: [latitude, longitude]
},
}
2 - Second, you need to create a page
pages
folderconferences
folderAFUP.astro
:
---
import Layout from "../../layouts/Layout.astro";
import NavBar from "../../components/NavBar.astro";
import { AFUPConferences } from "../../datas/conferences/AFUP/AFUPconferences";
import List from "../../components/List.astro";
---
<Layout title="AFUP" >
<NavBar />
<List data={AFUPConferences} imagePath="/_759b362e-6183-40dc-a54e-53a925c20be1.jpeg" />
</Layout>
src/datas
folderdatas
folderbooks.ts
file{
title: 'Write title of the book here',
author: 'Write author of the book here',
description: 'Add a low description',
path: 'Share the path of the book here'
},
/!\ The imagePath
is the path of the image of the book and I only want FERRET :D. You can less me to choose illustration. If you want to choose it, you need to add the image in the public
folder and share the path of the image in the imagePath
key. /!\
src/datas
folderdatas
foldernotes.ts
file{
title: 'Write title of the notes here',
author: 'Write author of the notes here',
description: 'Add a low description',
path: 'Share the path of the notes here'
},
docker build -t ladevdelatoile:latest .
docker run --name ladevdelatoile -p 4321:4321 ladevdelatoile:latest
docker stop ladevdelatoile