26 lines
637 B
Markdown
26 lines
637 B
Markdown
# vision-career-backend
|
|
|
|
Sample `.env`:
|
|
|
|
```dotenv
|
|
DEEPINFRA_API_TOKEN=your-token-here
|
|
OPENAI_API_KEY=your-token-here
|
|
|
|
BOT_TOKEN=your-token-here
|
|
|
|
SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
|
|
```
|
|
|
|
Commands:
|
|
|
|
```bash
|
|
uv run --env-file .env manage.py migrate
|
|
uv run --env-file .env manage.py createsuperuser --username stromenko_es --email estromenko@mail.ru
|
|
uv run --env-file .env manage.py runserver
|
|
|
|
uv run --env-file .env manage.py process_vacancies
|
|
uv run --env-file .env manage.py generate_recommended_vacancies
|
|
uv run --env-file .env manage.py collect_vacancies_from_telegram_messages
|
|
uv run --env-file .env manage.py runbot
|
|
```
|