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

star0202/pycord-template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

3da2dc1 · Feb 14, 2023
Feb 14, 2023
Feb 14, 2023
Feb 14, 2023
Feb 13, 2023
Feb 13, 2023
Jan 29, 2023
Jan 16, 2023
Feb 14, 2023
Feb 14, 2023
Feb 13, 2023
Feb 13, 2023
Jan 31, 2023
Feb 11, 2023
Feb 14, 2023
Feb 14, 2023

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!