Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/samad101/leashshield
https://github.com/samad101/leashshield
Last synced: 15 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/samad101/leashshield
- Owner: SAMAD101
- License: mit
- Created: 2023-07-15T16:29:14.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-12-25T17:08:16.000Z (11 months ago)
- Last Synced: 2023-12-26T18:18:00.841Z (11 months ago)
- Language: Python
- Size: 27.4 MB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Get started
## How to run this project locally:
- Install virtualenv python package to create a virtual environment.
```
pip install virtualenv
```- Make and start a virtual environment.
For Linux/MacOS:
```
python -m venv .venv
source .venv/bin/activate
```For Windows:
```
py -m venv .venv
source .venv/Scripts/activate
```- Install the necessary libraries.
```
pip install -r requirements/development.txt
```- Migrate Django models.
```
python manage.py migrate users
python manage.py migrate
```- Start the server.
```
python manage.py runserver
```