Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/samad101/leashshield


https://github.com/samad101/leashshield

Last synced: 15 days ago
JSON representation

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
```