Find a file
2022-01-31 22:53:19 +01:00
_git_hooks Flake8: oprava nekontrolování migrací v pre-commit 2016-11-08 10:54:00 +01:00
aesop Merge branch 'develop' into unsafe_develop 2021-11-07 08:35:54 +01:00
api Fix autocomplete umírající na mezeru 2021-11-15 22:05:30 +01:00
data dumpdata s --natural-foreign 2021-12-25 15:39:57 +01:00
deploy_v2 Move admin_org_prava.json 2021-10-04 22:06:52 +02:00
docs/zapisy Přidán zápis o zkrášlování kódu (testy, doku, CI, code review, …) 2021-12-07 01:27:09 +01:00
galerie Opravená kotva v galerii. 2021-12-01 08:17:10 +01:00
header_fotky Move context_processors.py do header_fotky 2020-10-16 00:35:36 +02:00
ilustrace_odmeny Obrazky kolem odmen 2021-09-02 18:23:49 +02:00
korektury Oprava seskupování korektur 2022-01-31 22:11:19 +01:00
mamweb Merge branch 'test' into develop 2022-01-31 22:53:19 +01:00
odevzdavatko Merge branch 'test' into develop 2022-01-31 22:53:19 +01:00
personalni Merge branch 'test' into develop 2022-01-31 22:53:19 +01:00
prednasky Merge branch 'test' into develop 2022-01-31 22:53:19 +01:00
seminar Merge branch 'test' into develop 2022-01-31 22:53:19 +01:00
setup Přesunutí uwsgi configu v systemd službě 2021-11-07 12:20:45 +01:00
soustredeni Bugfix. 2022-01-31 19:43:37 +01:00
treenode Statické soubory se načítají jinak 2022-01-31 21:05:59 +01:00
various Merge branch 'test' into develop 2022-01-31 22:53:19 +01:00
vue_frontend Oprava URLs v celém gitu 2021-03-09 22:44:42 +01:00
vysledkovky „.len“ v templatu na „| length“ 2022-01-31 21:18:08 +01:00
.gitignore Htaccess pro AESOPa 2021-05-25 22:16:35 +02:00
checklinks.sh checklinks: zobrazit i jediný rozbitý odkaz 2021-11-26 05:33:24 +01:00
constraints.txt Constrainty pro nový web nemáme, a staré fakt nechceme :-) 2021-09-06 04:48:30 +02:00
convert_spaces_to_tabs.sh Změna mezer na tabulátory 2019-05-11 01:15:05 +02:00
diff_db_backup.sh Update diff tool 2015-07-29 12:06:08 +02:00
fix_json.py Pridan skript na jednoznacnejsi razeni jsonu. 2021-01-26 20:21:18 +01:00
Makefile Přepsání volání bashe na přímé volání psql 2021-11-22 23:29:23 +01:00
manage.py Nový Makefile. Bude vyžadovat změny uWSGi configu. 2019-04-23 22:34:05 +02:00
README.md Merge branch 'data_migrations' into new_design 2020-02-19 20:46:08 +01:00
requirements.txt Merge branch 'develop' into django3.2 2022-01-31 20:03:23 +01:00

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

Run the following commands: make install_venv . env/bin/activate make install_web

After finishing development, run "deactivate".

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.

  • ./manage.py shell - run commands, list elemements of database, check syntax by importing files, etc.

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.