This is a project the main target of it is to help tourists to organize trips.
The project uses Python 3 as a main language. Backend framework that is used is Flask. Frontend framework is Vue.js.
To build the project you first need to build a frontend and then run a docker-compose
cd web
npm install
npm run build
cd ..
docker compose up -d
Frontend uses Vite as a packaging framework.
cd web
npm install
npm run dev
To run the backend in debug mode do the following.
cd app
py -m venv .venv
.venv/Scripts/Activate.ps1
pip install -r requirements.txt
$ENV:FLASK_APP="organizer"
flask run --debug