Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
Tanner Collin 4584d459b7 Create empty DRF project 6 anni fa
archivist Create empty DRF project 6 anni fa
.gitignore Initial commit 6 anni fa
README.md Create empty DRF project 6 anni fa
manage.py Create empty DRF project 6 anni fa

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