Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
7728776
Add basic mail library; Add docker compose
Stefan-5422 Mar 2, 2022
41a69ce
Add dkim script
Stefan-5422 Mar 2, 2022
d9e2963
Add docker-compose file
Stone-Red-Code Mar 23, 2022
9cbc972
Merge branch 'main' into DB_schema
Stone-Red-Code Mar 2, 2022
0734b8d
Merge pull request #1 from GithubOrgProjectPiza/DB_schema
Stefan-5422 Mar 9, 2022
b42f08b
Update package.json to add prisma; Add prisma library
Stefan-5422 Mar 9, 2022
d7f97b4
Add json body parser; Add default response for errors
Stefan-5422 Mar 23, 2022
4df4836
Create Register endpoint;
Stefan-5422 Mar 23, 2022
67d4878
Add Auth middleware;
Stefan-5422 Mar 23, 2022
71e3a3c
Add: Redis to docker-compose
Stefan-5422 Mar 30, 2022
8f9a8eb
Remove testroutes; Update register endpoint; Add Redis lib
Stefan-5422 Mar 30, 2022
5593652
Add library for template compilation; Add function to send out predef…
Stefan-5422 Apr 2, 2022
2cb5709
Fix bug in redis library;
Stefan-5422 Apr 2, 2022
76b3df4
Add Email Template;
Stefan-5422 Apr 2, 2022
03a678c
Add endpoint to verify email;
Stefan-5422 Apr 2, 2022
8f87911
FIX forgot to add changes to package.json
Stefan-5422 Apr 2, 2022
8d79571
Ignore compiled templates;
Stefan-5422 Apr 2, 2022
3f43558
Merge pull request #4 from GithubOrgProjectPiza/main
Stone-Red-Code Apr 2, 2022
2bd2367
Merge branch 'dev' into feature-mailserver
Stefan-5422 Apr 2, 2022
6099f58
Merge pull request #3 from GithubOrgProjectPiza/feature-mailserver
Stefan-5422 Apr 2, 2022
7f52f8c
Fix auth system
Stefan-5422 May 4, 2022
3784007
Merge branch 'dev' into routes-implementation
Stone-Red-Code May 4, 2022
1738640
Merge pull request #6 from GithubOrgProjectPiza/routes-implementation
Stone-Red-Code May 4, 2022
2147a7e
Merge remote-tracking branch 'origin/dev' into routes-implementation
Stone-Red-Code May 4, 2022
f409d42
Add auth to the endpoints
Stone-Red-Code May 4, 2022
c96d14a
Add price to prisma schema
Stone-Red-Code May 23, 2022
305f7cc
Merge branch 'DB_schema' into routes-implementation
Stone-Red-Code May 23, 2022
3f65206
Fix stuff
Stone-Red-Code May 23, 2022
c632f1a
Add pizzas to restaurant request
Stone-Red-Code May 23, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -102,3 +102,6 @@ dist

# TernJS port file
.tern-port

# Compiled mjml templates
.hbs
25 changes: 25 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
version: "3.4"
services:
mail:
image: boky/postfix
restart: always
environment:
- ALLOWED_SENDER_DOMAINS=mail.${DOMAIN}
ports:
- "587:587"
container_name: "postfix"
volumes:
- ./host/keys/:/etc/opendkim/keys
postgres:
image: postgres
restart: always
environment:
- POSTGRES_USER=server
- POSTGRES_PASSWORD=${DATABASE_PASSWORD}
ports:
- "5432:5432"
redis:
image: redis
restart: always
ports:
- "6379:6379"
Loading