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.
 
 
 
 
 
 
Jonas Havelka 6b3fb8f19c Pár prvních pokusů 2 years ago
_git_hooks Flake8: oprava nekontrolování migrací v pre-commit 8 years ago
aesop Merge branch 'develop' into unsafe_develop 3 years ago
api Fix autocomplete umírající na mezeru 3 years ago
data dumpdata s --natural-foreign 2 years ago
deploy_v2 Move admin_org_prava.json 3 years ago
docs Pár prvních pokusů 2 years ago
galerie Typo 2 years ago
header_fotky Move context_processors.py do header_fotky 4 years ago
ilustrace_odmeny Obrazky kolem odmen 3 years ago
korektury Lepší hláška v korekturovátku 2 years ago
mamweb Oprava: Defaultní nadpis v universal.html 2 years ago
odevzdavatko Merge branch 'develop' of gimli.ms.mff.cuni.cz:/akce/mam/git/mamweb into develop 2 years ago
personalni Oprava překlepu v termínářském přehledu. 2 years ago
prednasky Merge branch 'develop' of gimli.ms.mff.cuni.cz:/akce/mam/git/mamweb into develop 2 years ago
seminar zarovnání odpočtu deadline na střed 2 years ago
setup Přesunutí uwsgi configu v systemd službě 3 years ago
soustredeni Bugfix^2, close #981 2 years ago
treenode Statické soubory se načítají jinak 2 years ago
various Merge branch 'develop' of gimli.ms.mff.cuni.cz:/akce/mam/git/mamweb into develop 2 years ago
vue_frontend Oprava URLs v celém gitu 3 years ago
vysledkovky „.len“ v templatu na „| length“ 2 years ago
.gitignore Pár prvních pokusů 2 years ago
Makefile Přepsání volání bashe na přímé volání psql 3 years ago
README.md Merge branch 'data_migrations' into new_design 4 years ago
checklinks.sh checklinks: zobrazit i jediný rozbitý odkaz 3 years ago
constraints.txt Constrainty pro nový web nemáme, a staré fakt nechceme :-) 3 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
fix_json.py Pridan skript na jednoznacnejsi razeni jsonu. 3 years ago
manage.py Nový Makefile. Bude vyžadovat změny uWSGi configu. 5 years ago
requirements.txt Sphinx lepší vzhled 2 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

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.