diff --git a/.github/screenshot.png b/.github/screenshot.png
index 3ced4db..b236bf2 100644
Binary files a/.github/screenshot.png and b/.github/screenshot.png differ
diff --git a/README.md b/README.md
index 2b3df71..0750d14 100644
--- a/README.md
+++ b/README.md
@@ -27,18 +27,10 @@
- ๐ [License](#License)
- ๐ค [Contributing](#Contributing)
- ๐ ๏ธ [Tech Stack](#techstack)
-- โ๏ธ [Authors](#authors)
## ๐ฆ About
-TRIP is a minimalist Map tracker and Trip planner, to visualize your points of interest (POI) and organize your next adventure details.
-
-- ๐ Manage your POI on a Map
-- ๐พ Specify metadata (*dog-friendly*, *cost*, *duration*)
-- ๐๏ธ Categorize your points
-- ๐งพ Plan your next trip in a structured table, *Google Sheets*-style
-- ๐ Use map filtering and searching for fast interactions
-- โ๏ธ Customize your settings, import/export your data, and more
+TRIP is a minimalist Map tracker and Trip planner to visualize your points of interest (POI) and organize your next adventure details.
Demo is worth a thousand words, head to ๐ธ [Demo](#Demo).
@@ -48,98 +40,17 @@ Demo is worth a thousand words, head to ๐ธ [Demo](#Demo).
## ๐ฑ Getting Started
-These steps will guide to deploy the app, ready to use in โฑ๏ธ minutes.
If you need help, feel free to open an [issue](https://github.com/itskovacs/trip/issues).
-> [!NOTE]
-> Packages are available in the [packages section](https://github.com/itskovacs/trip/pkgs/container/trip) of the repository for quickstart, using just `docker run`
+> [!CAUTION]
+> :boom: `2.0.0` introduces a small breaking change on Docker volume. If you come from `1.X.Y`, follow the [2.0.0 few steps](https://github.com/itskovacs/trip/releases/tag/2.0.0).
```bash
-# Ensure you have the latest
-docker pull ghcr.io/itskovacs/trip:1
+# Ensure you have the latest image
+docker pull ghcr.io/itskovacs/trip:2
-# Run the app
-docker run -p 8080:8000 -v trip-storage:/app/storage ghcr.io/itskovacs/trip:1
-```
-
-
-### Preparation
-
-Clone the repo, you're one step away from being all set
-
-```bash
-git clone https://github.com/itskovacs/trip.git
-cd trip
-```
-
-### Docker ๐ณ (recommended)
-
-If needed, edit `docker-compose.yml` to modify the mapped port (default is `127.0.0.1:8080`).
-
-Run the container, head to TRIP website, create an account, enjoy โ
-
-```bash
-docker compose up -d
-```
-
-
-
-### Serving the content
-You can serve TRIP using a web server, eg: Nginx
-```nginx
-server {
- listen 443 ssl;
- listen [::]:443 ssl;
-
- server_name trip.lan; # Your TRIP domain
-
- location / {
- proxy_pass http://localhost:8080; # TRIP port, default is 8080
- proxy_set_header Host $host;
- proxy_set_header X-Real-IP $remote_addr;
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
- proxy_set_header X-Forwarded-Proto $scheme;
- proxy_set_header Upgrade $http_upgrade;
- proxy_set_header Connection "upgrade";
- }
-}
-```
-
-
-### Sources ๐ฉโ๐ป
-
-Install from sources and run the backend.
-Build the frontend and serve it with the web server.
-
-**backend**
-
-```bash
-cd backend
-
-# Source virtual environment
-python -m venv venv
-source venv/bin/activate
-
-# Install dependencies
-pip install -r trip/requirements.txt
-
-# Run the backend, port :8000
-fastapi run trip/main.py
-```
-
-**frontend**
-
-```bash
-cd frontend
-
-# Install dependencies
-npm install
-
-# Build the frontend
-npm build
-
-# Copy the build to your static web server directory
-cp -r dist/trip/browser /var/www/html
+# Run the container
+docker run -p 8080:8000 -v ./storage:/app/storage ghcr.io/itskovacs/trip:2
```
@@ -161,7 +72,8 @@ A demo is available at [itskovacs-trip.netlify.app](https://itskovacs-trip.netli
## ๐ง Roadmap
-New features coming soonTM, check out the development plan in the [Roadmap Wiki](https://github.com/itskovacs/trip/wiki/Roadmap). If you have ideas ๐ก, feel free to open an issue.
+New features coming soonTM, check out the development plan in the [Roadmap Wiki](https://github.com/itskovacs/trip/wiki/Roadmap).
+If you have ideas ๐ก, feel free to open an issue.
If you want to develop new feature, feel free to open a pull request (see [๐ค Contributing](#contributing)).
@@ -169,7 +81,7 @@ If you want to develop new feature, feel free to open a pull request (see [๐ค
## ๐ License
-I decided to license trip under the **CC BY-NC-SA 4.0** โ You may use, modify, and share freely with attribution, but **commercial use is prohibited**.
+I decided to license trip under the **CC BY-NC-SA 4.0**. You may use, modify, and share freely with attribution, but **commercial use is strictly prohibited**.
@@ -200,15 +112,11 @@ Contributions are welcome! Feel free to open issues if you find bugs and pull re
-## โ๏ธ Authors
-
--ย [@itskovacs](https://github.com/itskovacs)
-
-