Skip to content
This repository has been archived by the owner on Aug 12, 2023. It is now read-only.

star0202/pycord-template

Repository files navigation

Pycord Template by Starcea

Setup Virtual Environment and Necessary Files

  • Make Directory errors and logs
  • Make Empty File "your database file" for Database
  • Copy .env.example to .env
    • .env file:
      TOKEN="your token"
      DATABASE="your database file"
      TEST_GUILD_ID=[test_guild_ids]
      DEV_GUILD_ID=[dev_command_guild_ids]
  • Make Virtual Environment & Activate it
    • POSIX
      $ python3 -m venv venv
      $ . venv/bin/activate
    • Windows
      > python -m venv venv
      > venv/scripts/activate
  • Install Requirements
    > pip install -r requirements.txt
    > pip install -r requirements-dev.txt # Optional

Enjoy Programming!