Skip to content

Latest commit

 

History

History
57 lines (31 loc) · 1.61 KB

README.md

File metadata and controls

57 lines (31 loc) · 1.61 KB

My Project

Overview

This is a Django-based project that allows users to create and manage team members

Prerequisites

To run this project, you must have Python 3.8 or higher installed on your system. If you don't have Python installed, you can download it from the official website: https://www.python.org/downloads/.

Getting Started

To get started with this project, follow these steps:

1. Clone the repository to your local machine using Git:

git clone git@github.com:ahatanar/TeamManagement.git

Navigate to the main project directory:

cd TeamManagement

2. Install the virtual enviroment:

pip install venv

3. Create a new virtual environment using the following command:

python -m venv venv

4. Activate the virtual environment by running the following command:

venv\Scripts\activate

Note: If you're using a different operating system, the activation command may be slightly different. See the Python documentation for more information.

5. install django inside the virtual enviroment:

pip install django

6. Start the project by running the following command:

python manage.py runserver

This should start the Django development server and display the URL where you can access the project in your web browser.

Testing

Run python manage.py test to ensure everything is working properly.

Modifications

The css and styling is in the style folder in the root directoy.

The html templates are in the base/templates/base folder.

the project level python files are in the teammanagement folder in the base directoy.

the app level python files are in the base folder in the main directory.