Skip to content

Commit c1b1fa4

Browse files
authored
Merge pull request #89 from missionmike/develop
feat: the big rebrand.
2 parents c629bf6 + d9a1fc3 commit c1b1fa4

File tree

44 files changed

+140
-157
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+140
-157
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
"mounts": [
88
"source=${env:HOME}/.aws,target=/root/.aws,type=bind",
9+
"source=${localWorkspaceFolder}/../ampdresume-theme,target=/workspace/ampdresume-theme,type=bind",
910
"source=${localWorkspaceFolder}/../openresume-theme,target=/workspace/openresume-theme,type=bind"
1011
],
1112

.devcontainer/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ services:
2424
environment:
2525
POSTGRES_PASSWORD: postgres
2626
POSTGRES_USER: postgres
27-
POSTGRES_DB: openresume
27+
POSTGRES_DB: ampdresume
2828
ports:
2929
- "5432:5432"
3030

.env.example

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
# See the documentation for all the connection string options: https://pris.ly/d/connection-strings
66

77
# Backend config.
8-
DATABASE_URL=postgresql://postgres:[email protected]:5432/openresume?schema=openresume
8+
DATABASE_URL=postgresql://postgres:[email protected]:5432/ampdresume?schema=ampdresume
99

1010
# Amazon SES or other email server setup, used to send magic links.
1111
EMAIL_SERVER_HOST=
1212
EMAIL_SERVER_PORT=
1313
EMAIL_SERVER_USER=
1414
EMAIL_SERVER_PASSWORD=
15-
EMAIL_FROM="OpenResume <mail@openresume.org>"
15+
EMAIL_FROM="Ampd Resume <mail@ampdresume.com>"
1616

1717
# Environment for the app.
1818
NEXT_PUBLIC_ENVIRONMENT_NAME=local
@@ -38,7 +38,7 @@ NEXT_PUBLIC_BASE_URL=http://localhost:3000
3838
AWS_REGION=
3939

4040
# AWS S3 bucket for storing user uploaded files.
41-
AWS_S3_BUCKET_NAME=medialocal.openresume.org
41+
AWS_S3_BUCKET_NAME=medialocal.ampdresume.com
4242
AWS_S3_USER_ACCESS_KEY_ID=
4343
AWS_S3_USER_SECRET_ACCESS_KEY=
4444

@@ -49,5 +49,5 @@ SENTRY_AUTH_TOKEN=
4949
OPENAI_API_KEY=
5050

5151
# Test email for Cypress.
52-
CYPRESS_TEST_EMAIL=test@openresume.org
52+
CYPRESS_TEST_EMAIL=test@ampdresume.com
5353

.github/workflows/integration-test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ on:
88
workflow_dispatch:
99

1010
env:
11-
DATABASE_URL: postgres://postgres:postgres@localhost:5432/openresume?schema=openresume
11+
DATABASE_URL: postgres://postgres:postgres@localhost:5432/ampdresume?schema=ampdresume
1212
# Used for sending emails for magic links.
1313
EMAIL_SERVER_HOST: email-smtp.us-west-2.amazonaws.com
1414
EMAIL_SERVER_PORT: 587
1515
EMAIL_SERVER_USER: ${{ secrets.EMAIL_SERVER_USER }}
1616
EMAIL_SERVER_PASSWORD: ${{ secrets.EMAIL_SERVER_PASSWORD }}
17-
EMAIL_FROM: OpenResume <mail@openresume.org>
17+
EMAIL_FROM: AmpdResume <mail@ampdresume.com>
1818
# Used for tracking, analytics, etc.
1919
NEXT_PUBLIC_ENVIRONMENT_NAME: test
2020
NEXT_PUBLIC_GRAPHQL_ENDPOINT: http://localhost:3000/api/graphql
@@ -28,11 +28,11 @@ env:
2828
AWS_REGION: us-west-2
2929
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
3030
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
31-
AWS_S3_BUCKET_NAME: medialocal.openresume.org
31+
AWS_S3_BUCKET_NAME: medialocal.ampdresume.com
3232
# Used by Sentry for error tracking.
3333
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
3434
# Specific for the integration test.
35-
CYPRESS_TEST_EMAIL: test@openresume.org
35+
CYPRESS_TEST_EMAIL: test@ampdresume.com
3636
# For all AI integrations.
3737
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
3838

@@ -50,7 +50,7 @@ jobs:
5050
- name: Start Postgres
5151
run:
5252
docker run --name postgres -e POSTGRES_PASSWORD=postgres -e POSTGRES_USER=postgres -e
53-
POSTGRES_DB=openresume -p 5432:5432 -d postgres:16-alpine
53+
POSTGRES_DB=ampdresume -p 5432:5432 -d postgres:16-alpine
5454

5555
# Wait for Postgres to be ready
5656
- name: Wait for Postgres to be ready
@@ -77,7 +77,7 @@ jobs:
7777
env:
7878
AWS_S3_USER_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
7979
AWS_S3_USER_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
80-
AWS_S3_BUCKET_NAME: ci.openresume.org # Required by the s3Client in the script, but not used.
80+
AWS_S3_BUCKET_NAME: ci.ampdresume.com # Required by the s3Client in the script, but not used.
8181

8282
- name: Stop and remove Postgres
8383
if: always()

.github/workflows/prisma-sync-production.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
env:
18-
DATABASE_URL: "${{ secrets.DATABASE_URL_BASE }}openresume_production?schema=openresume"
18+
DATABASE_URL: "${{ secrets.DATABASE_URL_BASE }}ampdresume_production?schema=ampdresume"
1919

2020
steps:
2121
- uses: actions/checkout@v3

.github/workflows/prisma-sync-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
env:
18-
DATABASE_URL: "${{ secrets.DATABASE_URL_BASE }}openresume_test?schema=openresume"
18+
DATABASE_URL: "${{ secrets.DATABASE_URL_BASE }}ampdresume_test?schema=ampdresume"
1919

2020
steps:
2121
- uses: actions/checkout@v3

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# OpenResume
1+
# Ampd Resume
22

3-
OpenResume is an interactive resume platform where job-seekers can manager their own public resume
3+
Ampd Resume is an interactive resume platform where job-seekers can manager their own public resume
44
presence with interactive features to showcase their work.
55

66
## The Stack

cypress.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const config = {
5757
baseUrl: "http://localhost:3000",
5858
env: {
5959
BASE_URL: process.env.CYPRESS_BASE_URL || "http://localhost:3000",
60-
TEST_EMAIL: process.env.CYPRESS_TEST_EMAIL || "test@openresume.org",
60+
TEST_EMAIL: process.env.CYPRESS_TEST_EMAIL || "test@ampdresume.com",
6161
},
6262
chromeWebSecurity: false,
6363
specPattern: "./cypress/**/*.cy.js",

cypress/integration/account/profile.cy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
describe("Profile Section", () => {
2-
const testEmail = "test@openresume.org";
2+
const testEmail = "test@ampdresume.com";
33
const saveButton = "[data-testid='AccountFormSaveButton']";
44

55
before(() => {

cypress/integration/navigation/homepage.cy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ describe("Homepage", () => {
22
it("should load the homepage", () => {
33
cy.visit(Cypress.env("BASE_URL") || "/");
44
cy.wait(1000);
5-
cy.contains("h1", "OpenResume").should("be.visible");
5+
cy.contains("h1", "Ampd Resume").should("be.visible");
66
});
77
});

0 commit comments

Comments
 (0)