master
places-ive-been-in
A react app to keep track of places I've been in
Usage
- Create
src/core/config/points.tsand add some points, as such:
import { Points } from 'types/point';
export const points: Points = new Map([
[
'Viana do Castelo',
{
dates: [
['1996-08-10', '2014-09'],
['2020-04-04', '2026-01-01']
],
lat: 41.70202218723603,
lon: -8.834946931369325,
}
]
];
- Add images to subfolders in
public/imagesmatching the names of the points - Generate image thumbnails and paths
bun install
bun optimize-images
bun build-image-paths
bun check-dates
- Run the app
bun dev
Languages
TypeScript
93.9%
JavaScript
3.1%
Shell
2%
HTML
0.7%
CSS
0.3%