Skip to content

Commit 16304a7

Browse files
committed
feat: push initial commit
0 parents  commit 16304a7

37 files changed

+38020
-0
lines changed

.czrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"path": "./node_modules/cz-conventional-changelog"
3+
}

.editorconfig

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
end_of_line = lf
7+
charset = utf-8
8+
max_line_length = 120
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[*.md]
13+
max_line_length = 0
14+
trim_trailing_whitespace = false

.gitattributes

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
*.pbxproj -text
2+
* text eol=lf
3+
4+
## DOCKER
5+
*.dockerignore text
6+
Dockerfile text
7+
8+
## DOCUMENTATION
9+
*.markdown text
10+
*.md text
11+
*.mdwn text
12+
*.mdown text
13+
*.mkd text
14+
*.mkdn text
15+
*.mdtxt text
16+
*.mdtext text
17+
*.txt text
18+
AUTHORS text
19+
CHANGELOG text
20+
CHANGES text
21+
CONTRIBUTING text
22+
COPYING text
23+
copyright text
24+
*COPYRIGHT* text
25+
INSTALL text
26+
license text
27+
LICENSE text
28+
NEWS text
29+
readme text
30+
*README* text
31+
TODO text
32+
33+
## CONFIGS
34+
*.bowerrc text
35+
*.cnf text
36+
*.conf text
37+
*.config text
38+
.browserslistrc text
39+
.editorconfig text
40+
.gitattributes text
41+
.gitconfig text
42+
.htaccess text
43+
*.npmignore text
44+
*.yaml text
45+
*.yml text
46+
browserslist text
47+
Makefile text
48+
makefile text
49+
50+
## GRAPHICS
51+
*.ai binary
52+
*.bmp binary
53+
*.eps binary
54+
*.gif binary
55+
*.ico binary
56+
*.jng binary
57+
*.jp2 binary
58+
*.jpg binary
59+
*.jpeg binary
60+
*.jpx binary
61+
*.jxr binary
62+
*.pdf binary
63+
*.png binary
64+
*.psb binary
65+
*.psd binary
66+
*.svg text
67+
*.svgz binary
68+
*.tif binary
69+
*.tiff binary
70+
*.wbmp binary
71+
*.webp binary
72+
73+
## FONTS
74+
*.ttf binary
75+
*.eot binary
76+
*.otf binary
77+
*.woff binary
78+
*.woff2 binary

.github/workflows/compliance.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: "Compliance"
2+
3+
on:
4+
pull_request_target:
5+
types:
6+
- opened
7+
- edited
8+
- synchronize
9+
10+
jobs:
11+
semantics:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: amannn/[email protected]
15+
env:
16+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17+
18+
welcome:
19+
runs-on: ubuntu-latest
20+
needs: semantics
21+
if: github.event.action == 'opened'
22+
23+
steps:
24+
- uses: actions/first-interaction@v1
25+
with:
26+
repo-token: ${{ secrets.GITHUB_TOKEN }}
27+
pr-message: |-
28+
Congrats on making your first Pull Request and thanks for taking the time to improve Open Sauced! ❤️! 🎉🍕
29+
Say hello by joining the conversation in our [Discord](https://discord.gg/U2peSNf23P)

.github/workflows/development.yml

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
name: "Development"
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
build:
8+
name: Build application
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: "☁️ checkout repository"
12+
uses: actions/checkout@v2
13+
14+
- name: "🔧 setup node"
15+
uses: actions/[email protected]
16+
with:
17+
node-version: 16
18+
19+
- name: "🔧 setup cache"
20+
uses: actions/cache@v2
21+
with:
22+
path: ~/.npm
23+
key: ${{ runner.os }}-node-${{ hashFiles('**/npm-shrinkwrap.json') }}
24+
restore-keys: |
25+
${{ runner.os }}-node-
26+
27+
- name: "🔧 install npm@7"
28+
run: npm i -g npm@7
29+
30+
- name: "📦 install dependencies"
31+
run: npm ci
32+
33+
- name: "🚀 static app"
34+
run: npm run build
35+
36+
lint:
37+
name: Code standards
38+
runs-on: ubuntu-latest
39+
steps:
40+
- name: "☁️ checkout repository"
41+
uses: actions/checkout@v2
42+
43+
- name: "🔧 setup node"
44+
uses: actions/[email protected]
45+
with:
46+
node-version: 16
47+
48+
- name: "🔧 setup cache"
49+
uses: actions/cache@v2
50+
with:
51+
path: ~/.npm
52+
key: ${{ runner.os }}-node-${{ hashFiles('**/npm-shrinkwrap.json') }}
53+
restore-keys: |
54+
${{ runner.os }}-node-
55+
56+
- name: "🔧 install npm@7"
57+
run: npm i -g npm@7
58+
59+
- name: "📦 install dependencies"
60+
run: npm ci
61+
62+
- name: "🔍 lint code"
63+
run: npm run lint

.gitignore

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Dependencies
2+
/node_modules
3+
4+
# Production
5+
/build
6+
7+
# Generated files
8+
.docusaurus
9+
.cache-loader
10+
11+
# Misc
12+
.DS_Store
13+
.env.local
14+
.env.development.local
15+
.env.test.local
16+
.env.production.local
17+
18+
npm-debug.log*
19+
yarn-debug.log*
20+
yarn-error.log*

.npmrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
save-exact=false
2+
audit=false
3+
audit-level="moderate"
4+
loglevel="info"
5+
progress=false
6+
timing=false

Dockerfile

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
FROM node:16-alpine as development
2+
3+
WORKDIR /app
4+
5+
COPY package.json ./
6+
COPY npm-shrinkwrap.json ./
7+
COPY .npmrc ./
8+
9+
RUN npm ci
10+
11+
COPY public ./public
12+
COPY src ./src
13+
14+
CMD [ "npm", "start"]
15+
16+
FROM development as builder
17+
18+
RUN npm run build
19+
20+
FROM nginx:1.21-alpine as production
21+
22+
COPY --from=builder /app/build /usr/share/nginx/html

README.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Website
2+
3+
This website is built using [Docusaurus 2](https://docusaurus.io/), a modern static website generator.
4+
5+
## Installation
6+
7+
```console
8+
yarn install
9+
```
10+
11+
## Local Development
12+
13+
```console
14+
yarn start
15+
```
16+
17+
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
18+
19+
## Build
20+
21+
```console
22+
yarn build
23+
```
24+
25+
This command generates static content into the `build` directory and can be served using any static contents hosting service.
26+
27+
## Deployment
28+
29+
```console
30+
GIT_USER=<Your GitHub username> USE_SSH=true yarn deploy
31+
```
32+
33+
If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.

babel.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
presets: [require.resolve("@docusaurus/core/lib/babel/preset")],
3+
};

0 commit comments

Comments
 (0)