Files
WhereToGo/README.md

34 lines
1.0 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# WhereToGo
### Локальный запуск
Инструкция для **Linux**!
Для последующих действий **необходимо** установить **Python 3.9**
Все команды выполнять **не выходя** из консоли!
1. Откройте папку проекта и, для создания виртуального оркружения, выполните:
> python -m venv venv
2. Для активации виртуального окружения выполните:
> source venv/bin/activate
3. Для скачивания зависимостей:
> pip install -r requirements.txt
4. Для компиляции локалей:
> django-admin compilemessages
5. Перейдите в папку wheretogo **внутри** проекта и,
для создания бд, выполните:
> python ./manage.py migrate
6. Для запуска тестового сервера выполните:
> python ./manage.py runserver