-
-
Notifications
You must be signed in to change notification settings - Fork 241
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #181 from Peppermint-Lab/next
🚀 next release
- Loading branch information
Showing
26 changed files
with
1,223 additions
and
573 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,14 +44,16 @@ Check out the getting started guide if this is the first time you've used Pepper | |
version: "3.1" | ||
services: | ||
postgres: | ||
peppermint_postgres: | ||
container_name: peppermint_postgres | ||
profiles: | ||
- prod | ||
- dev | ||
- test | ||
container_name: postgres | ||
image: postgres:latest | ||
restart: always | ||
ports: | ||
- 5432:5432 | ||
volumes: | ||
- pgdata:/var/lib/postgresql/data | ||
environment: | ||
|
@@ -60,13 +62,16 @@ services: | |
POSTGRES_DB: peppermint | ||
peppermint: | ||
profiles: | ||
- prod | ||
container_name: peppermint | ||
image: pepperlabs/peppermint:latest | ||
ports: | ||
- 5001:5001 | ||
- 3000:3000 | ||
- 5003:5003 | ||
restart: always | ||
depends_on: | ||
- peppermint_postgres | ||
profiles: | ||
- prod | ||
depends_on: | ||
- postgres | ||
healthcheck: | ||
|
@@ -75,20 +80,19 @@ services: | |
timeout: 10s | ||
retries: 3 | ||
environment: | ||
PORT: 5001 | ||
DB_USERNAME: peppermint | ||
DB_PASSWORD: 1234 | ||
DB_HOST: postgres | ||
DB_USERNAME: "peppermint" | ||
DB_PASSWORD: "1234" | ||
DB_HOST: "peppermint_postgres" | ||
SECRET: 'peppermint4life' | ||
volumes: | ||
pgdata: | ||
``` | ||
|
||
Once this is completed then you can go to your base_url which was added to the compose file and login. | ||
|
||
The default login credentials are | ||
|
||
``` | ||
[email protected] | ||
1234 | ||
|
@@ -123,11 +127,8 @@ Give a ⭐️ if this project helped you! | |
|
||
## Star History | ||
|
||
|
||
[![Star History Chart](https://api.star-history.com/svg?repos=Peppermint-Lab/peppermint&type=Date)](https://star-history.com/#Peppermint-Lab/peppermint&Date) | ||
|
||
|
||
|
||
## Author | ||
|
||
👤 **Jack Andrews** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
-- CreateEnum | ||
CREATE TYPE "TicketType" AS ENUM ('bug', 'feature', 'support', 'incident', 'service', 'maintenance', 'access', 'feedback'); | ||
|
||
-- AlterTable | ||
ALTER TABLE "Ticket" ADD COLUMN "type" "TicketType" NOT NULL DEFAULT 'support'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.