Skip to content

Commit 5c09cdb

Browse files
created NextJS application
1 parent a8d376f commit 5c09cdb

File tree

1,325 files changed

+149908
-1
lines changed

Some content is hidden

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

1,325 files changed

+149908
-1
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ typings/
5656

5757
# gatsby files
5858
.cache/
59-
public
59+
# public
6060

6161
# Mac files
6262
.DS_Store

landing/.env.development

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
RESOURCE_ID=521ad36e0fad4f5ca74a91ab4292e212
2+
API_URL=https://apicherry-v3.redcarpetup.com
3+
BRANCH_KEY=key_test_cjDgNCEADmNY77BjthhbAfamqqpPhuAW
4+
KOMMUNICATE_APP_ID=18b919854243167f4edcb7e7f06e73619
5+
FIREBASE_apiKey=AIzaSyB3Rpwsj1O_qkxWxWSy0WTY6JHj-OExDc0
6+
FIREBASE_authDomain=api-project-279137177399.firebaseapp.com
7+
FIREBASE_databaseURL=https://api-project-279137177399.firebaseio.com
8+
FIREBASE_projectId=api-project-279137177399
9+
FIREBASE_storageBucket=api-project-279137177399.appspot.com
10+
FIREBASE_messagingSenderId=279137177399
11+
FIREBASE_appId=1:279137177399:web:253c3b457fa3b3042194b2
12+
FIREBASE_measurementId=G-40MQ0JR646
13+
PROD_URL=https://api.redcarpetup.com
14+
BOT_ID=redcarpet-test-eeskj
15+
APP_VERSION=5.011

landing/.env.production

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
RESOURCE_ID=521ad36e0fad4f5ca74a91ab4292e212
2+
API_URL=https://apicherry-v3.redcarpetup.com
3+
BRANCH_KEY=key_live_ddtnPvDqseR5W1AfFlbjAifizElQlxLb
4+
KOMMUNICATE_APP_ID=18b919854243167f4edcb7e7f06e73619
5+
FIREBASE_apiKey=AIzaSyB3Rpwsj1O_qkxWxWSy0WTY6JHj-OExDc0
6+
FIREBASE_authDomain=api-project-279137177399.firebaseapp.com
7+
FIREBASE_databaseURL=https://api-project-279137177399.firebaseio.com
8+
FIREBASE_projectId=api-project-279137177399
9+
FIREBASE_storageBucket=api-project-279137177399.appspot.com
10+
FIREBASE_messagingSenderId=279137177399
11+
FIREBASE_appId=1:279137177399:web:7113aa93812f644d2194b2
12+
FIREBASE_measurementId=G-DHHNSVXCMF
13+
PROD_URL=https://api.redcarpetup.com
14+
BOT_ID=test-bot-f8zny
15+
APP_VERSION=5.011

landing/.firebaserc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"projects": {
3+
"prod-gatsby": "static-website-22946"
4+
}
5+
}

landing/.gitignore

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
.next
8+
.docz
9+
out
10+
# testing
11+
/coverage
12+
13+
# production
14+
/build
15+
16+
# misc
17+
.DS_Store
18+
.env.local
19+
.env.development.local
20+
.env.test.local
21+
.env.production.local
22+
23+
# Packages have their independent repo
24+
/packages
25+
26+
# ignore log files
27+
npm-debug.log*
28+
yarn-debug.log*
29+
yarn-error.log*
30+
.idea/
31+
.vscode/
32+
node_modules/
33+
build
34+
.DS_Store
35+
*.tgz
36+
my-app*
37+
template/src/__tests__/__snapshots__/
38+
lerna-debug.log
39+
npm-debug.log*
40+
yarn-debug.log*
41+
yarn-error.log*
42+
/.changelog
43+
.npm/
44+
.vercel
45+
.firebase
46+

landing/.sentryclirc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[auth]
2+
token=ae36ca652083430c9b32307c44fd4043937f5420609c45c380e57769ac8e2644

landing/.yarnrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
--install.focus false
2+
--ignore-engines true

landing/Dockerfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM mhart/alpine-node:11 AS builder
2+
WORKDIR /app
3+
4+
COPY packages/landing /app
5+
6+
RUN apk --no-cache add pkgconfig autoconf automake libtool nasm build-base zlib-dev
7+
RUN yarn && yarn build
8+
9+
CMD [ "yarn", "start" ]

landing/README.md

Whitespace-only changes.

landing/babel.config.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
module.exports = function(api) {
2+
api.cache(true);
3+
4+
const presets = ['next/babel'];
5+
const plugins = [['styled-components']];
6+
7+
return {
8+
presets,
9+
plugins,
10+
};
11+
};

0 commit comments

Comments
 (0)