https://github.com/passidel/accessicity
Reiseplanung für Städtetrips für Menschen mit Einschränkungen
https://github.com/passidel/accessicity
accessibility barrierefreiheit community-driven reiseplanung
Last synced: 4 months ago
JSON representation
Reiseplanung für Städtetrips für Menschen mit Einschränkungen
- Host: GitHub
- URL: https://github.com/passidel/accessicity
- Owner: PassiDel
- Created: 2022-06-21T11:36:57.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-16T22:25:23.000Z (almost 4 years ago)
- Last Synced: 2025-10-03T17:03:47.809Z (9 months ago)
- Topics: accessibility, barrierefreiheit, community-driven, reiseplanung
- Language: Vue
- Homepage: https://accessicity.syma.dev/
- Size: 550 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Accessicity

Reiseplanung für Städtetrips für Menschen mit Einschränkungen
## Setup
Make sure to install the dependencies:
```bash
# npm
npm install
```
## Development Server
Start the development server on http://localhost:3000
```bash
npm run dev
```
## Production
Build the application for production:
```bash
npm run build
```
Locally preview production build:
```bash
npm run preview
```
## Deployment
To run the production version, you can simply use the provided Docker image
and [Docker-Compose file](docker-compose.yml):
```bash
docker pull ghcr.io/passidel/accessicity:latest
docker-compose up -d mariadb
# wait a few seconds for the db to be up
docker-compose up -d accessicity
```
## Seed
```sh
cat cities.geojson | node prisma/seed.js
```