Go to file
Piotr Wrzodak c1f8167f06 add README.md with 'Getting started' section
add .env.example

add requierements.txt
2024-02-14 23:00:09 +01:00
.env.example add README.md with 'Getting started' section 2024-02-14 23:00:09 +01:00
.gitignore add gitignore 2024-02-14 15:14:03 +01:00
README.md add README.md with 'Getting started' section 2024-02-14 23:00:09 +01:00
db.yml add db.yml docker compose file 2024-02-14 22:56:56 +01:00
gitea.yml add gitea.yml docker compose file 2024-02-14 22:57:10 +01:00
main.py add main.py 2024-02-14 22:58:48 +01:00
requirements.txt add README.md with 'Getting started' section 2024-02-14 23:00:09 +01:00

README.md

Getting started

  1. Install Python.
  2. Create virtual environment: python3 -m venv .venv.
  3. To activate the virtual environment, enter: source .venv/bin/activate.
  4. Install a list of requirements specified in requirements.txt: python -m pip install -r requirements.txt.
  5. Create a .env file cp .env.example .env and provide values of envirnoment variables.
  6. Run the script: python main.py.

When you're finished with your virtual environment, enter the following command to deactivate it: deactivate.