https://github.com/azrubael/250530-sign
The training repository for scripts that create handmade signs
https://github.com/azrubael/250530-sign
Last synced: 11 months ago
JSON representation
The training repository for scripts that create handmade signs
- Host: GitHub
- URL: https://github.com/azrubael/250530-sign
- Owner: Azrubael
- Created: 2025-05-29T18:29:27.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-30T18:19:09.000Z (about 1 year ago)
- Last Synced: 2025-05-31T02:07:48.878Z (about 1 year ago)
- Language: Python
- Size: 1.69 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
The project with scripts to automatically generate handmade-alike signs.
**The suggested order of virtual environment preparation.**
[1] - Install Python 3.10 (or later), pip и python3.10-venv
* https://docs.python.org/3/using/windows.html#launcher
* https://pip.pypa.io/en/stable/installing/
```bash
apt install python3.10-venv
```
[2] - Create isolated invironment
* For Linux
```bash
$ python3 -m venv my_env
$ source my_env/bin/activate
```
* For Windows
```bash
$ py -m venv my_wenv
$ .\my_wenv\Scripts\activate
```
[3] - Activate virtual environment:
```bash
$ source my_env/bin/activate
```
[4] - Restore dependencies:
```bash
(my_env)$ pip install -r dependencies.txt
```
[5] - Start local dev server:
```bash
(my_env)$ python ./mysite/manage.py runserver
```
[6] - Create list of dependencies
```bash
(my_env)$ pip freeze > dependencies.txt
```
[7] - To deactivate isolated environment
```bash
(my_env)$ deactivate
```