Meetpy website - this is a shared website along polish Python meetup groups.
For example:
Before the next step, be sure the following OS libraries are installed:
- g++
- libjpeg-dev
- zlib-dev
- python-dev
You can run provision-new-dev-env.sh
on your dev environment – it will create
everything necessary (using virtualenv) for basic development.
Alternatively you can use Docker and Docker Compose. They will setup a container with meetpy Django app (available at http://localhost:18000), a Postgres database with a PhpPgAdmin interface (available at http://localhost:8082) and a mock of SMTP service (available at http://localhost:8081).
For docker:
docker-compose -f docker-compose-dev.yml up
docker-compose -f docker-compose-dev.yml exec meetpy python manage.py migrate
NOTE
Tested on:
- docker versions 18.09.7 and 19.03.2
- docker-compose version 1.24.1
Consult https://docs.docker.com/install/ and https://docs.docker.com/compose/install/ for instructions how to install docker.
For more info read the provision-new-dev-env.sh
, docker-compose-dev.yml
or ask us on slack:
https://pykonik.slack.com/ or https://join-slack.pykonik.org/
- Make a fork of
https://github.com/meetpy/meetpy
- Make changes in your fork (ideally on a feature/bugfix branch)
- Make sure your branch is based on latest
upstream/master
(git fetch upstream
) (provision-new-dev-envirionment.sh
addsmeetpy/meetpy
asupstream
) - Push your changes.
- Create a pull request to meetpy/meetpy, targeting master.
- Copy
meetpy.settings.group_constants.constants.default.yaml
tomeetpy.settings.group_constants.constants.<meetup_name>.yaml
- Fill in the data for your group.
- In case you need different templates, create
templates/<group_name>
directory and put any templates you'd like. - Execute with
MEETUP_NAME=<group_name> command