hr management platform
-
Clone the repository:
git clone https://github.com/techdiet/peepo.git
-
Navigate to the project directory:
cd peepo
-
Create and activate a Virtual Environment: Isolate your project dependencies from the global Python environment by creating and activating a virtual environment.
- Create a virtual environment
python -m venv .venv
- Activate the virtual environment
- On Windows
source .venv\Scripts\activate
- On macOS/Linux
source .venv/bin/activate
- On Windows
- Create a virtual environment
-
Create environment file Create a copy of .env.template file and replace the placeholders with you variables values.
-
Install dependencies:
pip install -r requirements.txt
-
Apply database migrations:
python manage.py migrate
-
Run the development server:
python manage.py runserver