https://github.com/anof-cyber/djangocrypt
A test app for PyCript
https://github.com/anof-cyber/djangocrypt
Last synced: 15 days ago
JSON representation
A test app for PyCript
- Host: GitHub
- URL: https://github.com/anof-cyber/djangocrypt
- Owner: Anof-cyber
- License: gpl-2.0
- Created: 2023-06-07T11:16:52.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-04T18:29:36.000Z (over 1 year ago)
- Last Synced: 2025-04-13T09:16:39.135Z (15 days ago)
- Language: HTML
- Size: 30.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# djangocrypt
A test app for PyCript Burp Extension## Requirements
- Pytohn 3.7+
## Installation
### Docker
```bash
## Installation Method 1
git clone https://github.com/Anof-cyber/djangocrypt
cd djangocrypt
docker build -t djangocrypt .## Installation Method 2
docker pull souravkalal/djangocrypt## Run Web Server
docker run -p 8000:8000 djangocrypt
```#### Windows
```bash## Installation
git clone https://github.com/Anof-cyber/djangocrypt
cd djangocrypt
python -m venv venv
venv\Scripts\activate
pip install -r requirements.txt## Run Web Server
cd djangocrypt
venv\Scripts\activate
Python djangocrypt\manage.py runserver
```#### Linux
```bash## Installation
git clone https://github.com/Anof-cyber/djangocrypt
cd djangocrypt
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt## Run Web Server
cd djangocrypt
source venv/bin/activate
Python djangocrypt/manage.py runserver
```Access the http://127.0.0.1:8000/