Edit README.md

This commit is contained in:
Jonas Braus
2025-03-17 17:14:07 +01:00
parent 282234c04b
commit e8a2b9b409
+16 -13
View File
@@ -1,16 +1,19 @@
# mensaappbackend # Download Docker
You have to download docker on your system (including compose plugin). F.e. on ubuntu `$ snap install docker`
A new Flutter project. # Create compose file
Create a file called `docker-compose.yml` and paste the content:
```
name: supabase
## Getting Started services:
dashboard:
container_name: mensa-dashboard
image: registry.gitlab.com/brausjonas/mensaappdashboard:0.3
restart: unless-stopped
ports:
- 8051:8051
```
This project is a starting point for a Flutter application. open terminal, locate the docker-compose.yml file and run `docker compose up -d` or `docker-compose up -d` depending on your compose plugin verison.
(You might have to run as sudo)
A few resources to get you started if this is your first Flutter project:
- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab)
- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook)
For help getting started with Flutter development, view the
[online documentation](https://docs.flutter.dev/), which offers tutorials,
samples, guidance on mobile development, and a full API reference.