A great mix of hosting your property, visit a place and discover nearby experience
Provide a brief overview of the project, its purpose, and its main features.
my_place
├── client
│ └── src
├── backend
│ ├── server
│ └── server.test
└── backend.sln
Download docker if developing containerized route.
- Docker (version 26.1.1)
Download the following dependencies if running software locally (Without docker).
- .NET 8 SDK
- Node.js (version 21.6.1)
git clone https://github.com/O1SoftwareNetwork/my_place.git
cd my_place
# Build docker images
docker compose build
# Run docker
docker compose up
The project can be run locally instead of using docker
# Install pnpm as a package manager
npm install -g pnpm
# Enter front end project
cd client
# Run install
pnpm install
# run both front end and back end
pnpm devserver