-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new files and update existing files
- Loading branch information
1 parent
dcf6fc6
commit 59c110d
Showing
32 changed files
with
22,582 additions
and
15,792 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
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,17 @@ | ||
# This file specifies files that are *not* uploaded to Google Cloud | ||
# using gcloud. It follows the same syntax as .gitignore, with the addition of | ||
# "#!include" directives (which insert the entries of the given .gitignore-style | ||
# file at that point). | ||
# | ||
# For more information, run: | ||
# $ gcloud topic gcloudignore | ||
# | ||
.gcloudignore | ||
# If you would like to upload your .git directory, .gitignore file or files | ||
# from your .gitignore file, remove the corresponding line | ||
# below: | ||
.git | ||
.gitignore | ||
|
||
# Node.js dependencies: | ||
node_modules/ |
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,19 @@ | ||
name: "Configure GitHub Pages" | ||
|
||
on: [push] # This workflow will run whenever code is pushed to the repository | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Run your action | ||
id: my_step # Give the step an id | ||
uses: ./ | ||
with: | ||
static_site_generator: "nuxt" | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
enablement: "false" | ||
- name: Use outputs | ||
run: echo "The base URL is ${{ steps.my_step.outputs.base_url }}" |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -11,5 +11,5 @@ | |
|
||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
# npx lint-staged | ||
npx lint-staged | ||
npm --no-git-tag-version version patch |
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 |
---|---|---|
@@ -1,7 +1,46 @@ | ||
# mongodb | ||
version: '3' | ||
|
||
export MONGODB_VERSION=6.0-ubi8 | ||
podman pull mongodb/mongodb-community-server | ||
podman run --name mongodb -d mongodb/mongodb-community-server:$MONGODB_VERSION | ||
podman run -d -it -p 27017:27017 | ||
podman run --name mongodb -d -p 27017:27017 -v $(pwd)/data:/data/db mongodb/mongodb-community-server:$MONGODB_VERSION | ||
services: | ||
nodejs: | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
image: nodejs | ||
container_name: nodejs | ||
restart: unless-stopped | ||
env_file: .env | ||
environment: | ||
- MONGO_USERNAME=$MONGO_USERNAME | ||
- MONGO_PASSWORD=$MONGO_PASSWORD | ||
- MONGO_HOSTNAME=db | ||
- MONGO_PORT=$MONGO_PORT | ||
- MONGO_DB=$MONGO_DB | ||
ports: | ||
- "80:8080" | ||
volumes: | ||
- .:/home/node/app | ||
- node_modules:/home/node/app/node_modules | ||
networks: | ||
- app-network | ||
command: ./wait-for.sh db:27017 -- /home/node/app/node_modules/.bin/nodemon app.js | ||
|
||
db: | ||
image: mongo:4.1.8-xenial | ||
container_name: db | ||
restart: unless-stopped | ||
env_file: .env | ||
environment: | ||
- MONGO_INITDB_ROOT_USERNAME=$MONGO_USERNAME | ||
- MONGO_INITDB_ROOT_PASSWORD=$MONGO_PASSWORD | ||
volumes: | ||
- dbdata:/data/db | ||
networks: | ||
- app-network | ||
|
||
networks: | ||
app-network: | ||
driver: bridge | ||
|
||
volumes: | ||
dbdata: | ||
node_modules: |
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.