Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Tanner Collin 4584d459b7 Create empty DRF project il y a 6 ans
archivist Create empty DRF project il y a 6 ans
.gitignore Initial commit il y a 6 ans
README.md Create empty DRF project il y a 6 ans
manage.py Create empty DRF project il y a 6 ans

README.md

telegram-archivist

Development (Quickstart)

  • Install dependencies:
$ sudo apt-get install python3 python3-pip virtualenv python3-virtualenv
  • Setup the virtual environment with python3
$ virtualenv -p python3 env
  • Activate the environment, install dependencies, perform DB migration
$ . env/bin/activate
(env) $ pip install -r requirements.txt
(env) $ python manage.py migrate
(env) $ python manage.py runserver

If you get a no such table error, try: python manage.py migrate --run-syncdb