Welcome to the techPractica project! This README will help you get started quickly and point you to important documentation for development guidelines and team workflow.
Please refer to the following detailed guides in the backend documentation folder:
Before starting development or building the project, make sure your branch is up to date:
# Fetch the latest updates from remote without changing your files
git fetch origin
# Switch to the master branch
git switch master
# Pull the latest changes from the remote master
git pull origin master
# Switch back to your feature branch
git switch your-branch-name
# Merge the updated master into your branch
git merge master
# Resolve conflicts if any, then commitThe project uses Docker for easy environment setup.
To start the services, run:
docker-compose up -dThis command will start all necessary containers in detached mode.
- Follow the team workflow and coding guidelines in the Team Workflow Guide.
- Check the REST API Development Guidelines before working on API features.
- Review the Architecture Principles Guide to understand the system design.
Happy coding! 🎉