This repository contains the internal codebase for the Nodaro Search Engine It is maintained by the Nodaro team and is intended for internal contributors.
Make sure you have the following installed:
- Git
- Node.js / Python / Arduino IDE / etc.
- Any other tools
git clone https://github.com/nodaro-labs/repo-name.git
cd repo-name- Never commit directly to
main - Create a new branch for your work:
git checkout -b feature/your-feature-name
git add .
git commit -m "Brief description of change"git push origin feature/your-feature-nameCopy the example environment file and fill in credentials
cp .env.example .envFrom the project root:
python3 -m venv .venvMacOS / Linux
source .venv/bin/activateWindows
.venv\Scripts\activatepip install -r requirements.txt