Skip to content

Latest commit

 

History

History
82 lines (63 loc) · 1.23 KB

README.md

File metadata and controls

82 lines (63 loc) · 1.23 KB

Task Manager

task manager app

Task 1 instruction

Prerequisites

Before installing Task Manager, ensure you have the following prerequisites:

  • Python
  • MariaDB
  • Redis

System Dependencies Installation

  1. Install Python:
brew install python
brew link python
  1. Install MariaDB and Redis:
brew install mariadb redis

MariaDB Configuration

  1. Configure MariaDB by editing the configuration file:
nano /usr/local/etc/my.cnf
  1. Set your MariaDB root password:
mysql_secure_installation

Frappe Installation

  1. Install Frappe Bench:
pip3 install frappe-bench
  1. Initialize a new Frappe environment:
bench init frappe-dev
cd frappe-dev
  1. Create a new site:
bench new-site mysite.local
  1. Start the Frappe server:
bench start

App Installation

  1. Create a new app:
bench new-app task_manager
  1. Install the app to your site:
bench --site mysite.local install-app task_manager

change directory to the app you create and run

bench --site mysite.local  serve

remember to migrate

bench --site mysite.local migrate

Other anwser to the Test are inside Task.md Markdown