| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
This README provides step-by-step instructions on how to set up and run the project.
Before you begin, ensure you have the following prerequisites installed on your system:
Clone the repository:
git clone git@github.com:devopshobbies/gitlabci-tutorial.git
cd gitlabci-tutorialCreate a virtual environment (optional but recommended):
python -m venv venvActivate the virtual environment:
On Windows:
venv\Scripts\activateOn macOS and Linux:
source venv/bin/activateInstall project dependencies:
pip install -r requirements.txtApply migrations to create database tables:
python manage.py migrate
python maange.py makemigrationsCreate a superuser for the Django admin panel:
python manage.py createsuperuserStart the development server:
python manage.py runserverOpen your web browser and go to http://127.0.0.1:8000/ to access the Django application.
Access the Django admin panel at http://127.0.0.1:8000/admin/ and log in using the superuser credentials you created earlier.
If you would like to contribute to this project, please feel free to contribute.
| Back | FazBrowse Home | New Git URL |