Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #2

Merged
merged 1 commit into from
Dec 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 20 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,23 @@
# IpBackend
Steps to run this project:
git clone https://github.com/roro11fr/IpBackend.git
cd myProject
python -m venv myVEnv # create virtual environment -only once
source myVEnv/bin/activate # Linux/macOS
myVEnv\Scripts\activate # Windows - activate environment
pip install -r requirements.txt # install all libraries
to run: python manage.py runserver
### Steps to run this project:

## Windows
```git clone https://github.com/roro11fr/IpBackend.git```\
```cd myProject```\
```python -m venv myVEnv```\
```create virtual environment```\
```myVEnv\Scripts\activate```\
```pip install -r requirements.txt```\
```python manage.py runserver```

## Linux/macOS
```git clone https://github.com/roro11fr/IpBackend.git```\
```cd myProject```\
```python -m venv myVEnv```\
```create virtual environment -only once```\
```source myVEnv/bin/activate```\
```pip install -r requirements.txt```\
```python manage.py runserver```

Steps to connect project to the data base:
download mysql and install from:
Expand Down Expand Up @@ -73,4 +84,4 @@ python manage.py migrate

7. Run the Django Development Server
Start your project server:
python manage.py runserver
python manage.py runserver