Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maxonary/website-victoria-arnold
https://github.com/maxonary/website-victoria-arnold
Last synced: 12 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/maxonary/website-victoria-arnold
- Owner: maxonary
- Created: 2023-04-03T13:30:54.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-04-29T19:49:49.000Z (almost 2 years ago)
- Last Synced: 2024-02-25T14:30:25.554Z (12 months ago)
- Language: Astro
- Size: 4.5 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Gallery App
This is a simple gallery app that allows users to upload, view, update, and delete images. The app is built using [Express](https://expressjs.com/) and integrates with [Firebase](https://firebase.google.com/) to store and retrieve images. The app also includes some additional routes for an "About" page and a "Contact" page.
## Prerequisites
To run this app, you will need to have Node.js installed on your machine. You will also need to set up a Firebase project and obtain the Firebase configuration credentials from Maximilian Arnold.
## Installation
1. Clone this repository to your local machine.
2. Navigate to the project directory and run `npm install`.
3. Paste the Firebase configuration credentials into the `firebase.js` file.
4. Run `npm run build` to build the project.
5. Run `npm start` to start the server.
6. Else you can run `npm run dev` to start the server in development mode.## Project Structure
```
├── public/
├── src/
│ ├── components/
│ ├── content/
│ └── pages/
├── astro.config.mjs
├── README.md
├── package.json
└── tsconfig.json
```Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
The `src/content/` directory contains "collections" of related Markdown and MDX documents. Use `getCollection()` to retrieve posts from `src/content/blog/`, and type-check your frontmatter using an optional schema. See [Astro's Content Collections docs](https://docs.astro.build/en/guides/content-collections/) to learn more.
Any static assets, like images, can be placed in the `public/` directory.
## Deployment
This project is automatically deployed to [Firebase](https://firebase.google.com) when merged into master. To deploy manually, run `firebase deploy`.