You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Set Up the Local Repository with Git
If the user has already cloned the Horilla repository, navigate to the local folder: cd path/to/horilla
If not, clone it from the GitHub repository:
git clone https://github.com/horilla-opensource/horilla.git
cd horilla
Stash Local Changes (If Any)
If the user has made local changes to the code (e.g., minor customizations), they should
stash or commit them to prevent merge conflicts. Use: git stash
Or commit the changes:
git add .
git commit -m "Local custom changes"
Pull the Latest Changes from the master Branch
To keep the local repository updated with the latest changes from the master branch: git pull origin master
This command will fetch the latest changes from the remote repository and merge them into
the local master branch. Since the database is not modified by this operation, the user will
not lose any data.
Check for Any Required Database Migrations
Even though you mentioned that the database remains unchanged, sometimes code updates
include new database migrations. To ensure that the codebase and database schema are
compatible, run:
If the server is already running, is there a command to stop/restart it?
root@1d386e6368c5:/app# python manage.py runserver
Watching for file changes with StatReloader
Performing system checks...
System check identified no issues (0 silenced).
Error: That port is already in use.
root@1d386e6368c5:/app#
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Basically, I did the following steps:
Initial
succeeding
Pushing to web directory
Since venv is ignored. I have to instantiate a separate venv in the web directory
Any comments on these steps?
Beta Was this translation helpful? Give feedback.
All reactions