You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Kateřina Čížková d07883e087 testdata popis orga 4 years ago
_git_hooks Flake8: oprava nekontrolování migrací v pre-commit 8 years ago
dakosdump Zbytky poznamek z importu diskuse 9 years ago
galerie Unicode fix 5 years ago
korektury Unicode fix 5 years ago
mamweb práce na stránce organizátorů 4 years ago
obalky Na různých místech změna oddělení (OVVP -> OPMK) 6 years ago
prednasky Přidání atomic=False do migrací 5 years ago
seminar testdata popis orga 4 years ago
.gitignore Odstraněny staré složky z gitignore 5 years ago
Makefile do Makefile přidána funkce sync_prod_flatpages na stáhnutí aktuálních statických stránek 5 years ago
README.md Update README.md 5 years ago
Schema_new.dia Update modelu, odstraneni zadani a vzoraku z ulohy 5 years ago
convert_spaces_to_tabs.sh Změna mezer na tabulátory 5 years ago
diff_db_backup.sh Update diff tool 9 years ago
flat.json testdata popis orga 4 years ago
mamweb_prod.ini Update uWSGi configu, **Možná nebude fungovat** 5 years ago
mamweb_test.ini Update uWSGi configu, **Možná nebude fungovat** 5 years ago
manage.py Nový Makefile. Bude vyžadovat změny uWSGi configu. 5 years ago
requirements.txt Nová aplikace na menu. 5 years ago
sitetree_new.json json s menu 4 years ago

README.md

Basic commands for web development

After you clone this repository, run make. It will download, locally install and setup virtualenv and pip, and then locally install all required packages from requirements.txt.

When working with the code, always use the binaries in ./bin/, such as bin/pip, bin/python, ... never the global python, pip, ... Use make and ./manage.py for most things.

Use git :-)

Quickstart

make install_venv
. env/bin/activate
make install_web

Make commands

  • make install (or make) - locally install and setup virtualpy, install required packages. Ran again installs missing packages. Run after changing requirements.txt.

  • make clean - remove local python packages.

  • make veryclean - remove local packages and virtualpy enviroment and binaries.

  • make run - runs "./manage.py runserver_plus"

  • make push_test - pushes the last commited version to test location. Only git-commited changes are pushed! Rest is re-generated from scratch. At test server, the media data and database are kept the same. Everything else not in .gitignore is deleted/overwritten on the test server.

  • make schema - generates graph of seminar and all schemas as PDF. Supercool!

  • make sync_prod_flatpages - downloads and applies static/flat pages from mamweb-prod

./manage.py commands

  • ./manage.py migrate - update the database schema, initialise the database. You need to run this in the beginning.

  • ./manage.py runserver_plus - run a debugging server for the web. Slightly enhanced compared to ./manage.py runserver. Open 127.0.0.1:8000.

  • ./manage.py testdata - create pseudo-random seminar data and admin/admin user.

  • ./manage.py test - run the tests.

Configurations

  • mamweb/settings_common.py contains most configuration options.
  • mamweb/settings.py is used only for local development.
  • mamweb/settings_test.py is used for testing on atrey.
  • mamweb/settings_prod.py is used in production deployment.

These are automatically switched by make.