task manager app
Before installing Task Manager, ensure you have the following prerequisites:
- Python
- MariaDB
- Redis
- Install Python:
brew install python
brew link python
- Install MariaDB and Redis:
brew install mariadb redis
- Configure MariaDB by editing the configuration file:
nano /usr/local/etc/my.cnf
- Set your MariaDB root password:
mysql_secure_installation
- Install Frappe Bench:
pip3 install frappe-bench
- Initialize a new Frappe environment:
bench init frappe-dev
cd frappe-dev
- Create a new site:
bench new-site mysite.local
- Start the Frappe server:
bench start
- Create a new app:
bench new-app task_manager
- 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