Benjamin Bach
4254baf09d
All checks were successful
continuous-integration/drone/push Build is passing
Flagging incoming changes, no actions required. This is stuff I consider "MVP", as in what we need urgently to send out payment links to members and receive payments via Stripe. - [x] Allow products, orders etc - [x] Define several products per membership type - [x] Possibility to create a membership BEFORE it's paid - [x] Mark memberships active when payments are received - [x] Create membership history for each member (via Django admin) - [x] Efficiently mark members in a list and choose "create <membership type> for current year with an unpaid order" (Django Admin actions) - [x] Order payment page w/ Stripe integration - [ ] Send email with order payment link - [ ] Send payment confirmation emails - [x] Re-generate migrations Co-authored-by: valberg <valberg@orn.li> Reviewed-on: #32 Reviewed-by: valberg <valberg@orn.li> Co-authored-by: Benjamin Bach <benjamin@overtag.dk> Co-committed-by: Benjamin Bach <benjamin@overtag.dk>
11 lines
381 B
Plaintext
11 lines
381 B
Plaintext
SECRET_KEY=something-very-random
|
|
POSTGRES_HOST=postgres
|
|
POSTGRES_PASSWORD=postgres
|
|
POSTGRES_PORT=5432
|
|
DATABASE_URL=postgres://postgres:postgres@postgres:5432/postgres
|
|
# Use something along the the following if you are not using docker
|
|
# DATABASE_URL=postgres://postgres:postgres@localhost:5432/datacoop_membersystem
|
|
DEBUG=True
|
|
STRIPE_API_KEY=sk_test_
|
|
STRIPE_ENDPOINT_SECRET=whsec_
|