pycon
pycon copied to clipboard
PyCon Italia website
The monorepo for the new PyCon Italia website, based on Django, Strawberry, Next.js and React.
How to setup
Use our local docker-compose setup to start all services you need.
After cloning the project, you can run:
docker-compose up
to start the services.
You will find the services at the following ports:
Service name | Address |
---|---|
PyCon Backend | http://localhost:8000 |
PyCon Frontend | http://localhost:3000 |
Association Frontend | http://localhost:3020 |
Association Backend | http://localhost:8060 |
Users Backend | http://localhost:8050 |
GraphQL Gateway | http://localhost:4000 |
Everything you need to get started is already configured and will work out of the box.
If you need to work with our Stripe or Pretix integration, you will have to ask on our Discord channel which secret key you need and why you need it.
Once given, create a .env
file at the project root with inside:
STRIPE_PUBLIC_KEY=
PRETIX_API_TOKEN=
STRIPE_WEBHOOK_SIGNATURE_SECRET=
STRIPE_SECRET_API_KEY=
Adding the secret keys after the =
symbol.
Libraries & External repos
Libraries used by this project are in separate repositories.
Name | Description | Link |
---|---|---|
Toolkit | Backend Toolkit used to share code between all services | https://github.com/pythonitalia/pythonit-toolkit |
ESLint Config | ESLint config used by the FE services | https://github.com/pythonitalia/eslint-config-pythonit |