Skip to content

RPG Saga by Kirill Bokov #26

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 15 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ stages:
- lint_saga
- test_saga
- lint_shop
<<<<<<< HEAD
- test_shop
=======
- test_server
- test_client
>>>>>>> upstream/master

include:
- local: /rpgsaga/.gitlab-ci.yml
Expand Down
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,30 @@ This project is your Portfolio: your future interviewer will take a look at that
1. Issues/Board/Milestones (how many issues/milesones were closed, tickets management quality, etc.)
1. Merge Requests (overall MRs qualry, all MRs must be reviewed and approved, etc.)

<<<<<<< HEAD
=======
If you have any blockers or questions please feel free to ping both Bootcamp LT or PT Mentor (depends on what task you are currently doing).

As output of your learning on Bootcamp you should have 3 folders:
>>>>>>> upstream/master
1. codewars
1. rpgsaga
1. onlineshop

<<<<<<< HEAD
=======
For RpgSaga and online shop we have following templates
RpgSaga:
- [Python](https://gitlab.akvelon.net:9443/bootcamp/rpgsagapython)
- [NodeJs](https://gitlab.akvelon.net:9443/bootcamp/rpgsagats)
- [.Net](https://gitlab.akvelon.net:9443/bootcamp/rpgsaganetcore)

Online Shop:
- [.Net](https://gitlab.akvelon.net:9443/bootcamp/net-react-template)
- [NodeJs](https://gitlab.akvelon.net:9443/bootcamp/nest-react-template)
- [Python](https://gitlab.akvelon.net:9443/bootcamp/python-react-template)

Also each issue in the project must have a comment with sign off from reviewer that task is fully done.

>>>>>>> upstream/master
## Good Luck!
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file added codewars/Permutations/perm.js
Empty file.
Empty file.
11 changes: 11 additions & 0 deletions onlineshop/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
HELLO=app
HTTPS=true
NODE_ENV=development
SERVER_HOST=localhost
SERVER_PORT=3000
SERVER_WEB_HOST=localhost
SERVER_WEB_PORT=4000
DB_USER=postgres
DB_PASSWORD=postgres
DB_NAME=cats
DB_PORT=5432
2 changes: 2 additions & 0 deletions onlineshop/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,5 @@
!.vscode/launch.json
!.vscode/extensions.json

.env
temp/
4 changes: 2 additions & 2 deletions onlineshop/.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ test_server:
image: node
tags:
- docker
stage: test_shop
stage: test_server
script:
- cd ./onlineshop/source/server/
- npm ci
Expand All @@ -34,7 +34,7 @@ test_client:
image: node
tags:
- docker
stage: test_shop
stage: test_client
script:
- cd ./onlineshop/source/client/
- npm ci
Expand Down
4 changes: 2 additions & 2 deletions onlineshop/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ services:
- POSTGRES_USER=${DB_USER}
- POSTGRES_PASSWORD=${DB_PASSWORD}
- POSTGRES_DB=${DB_NAME}
volumes:
- ./pgdata:/var/lib/postgresql/data
# volumes:
# - ./pgdata:/var/lib/postgresql/data
ports:
- "${DB_PORT}:5432"

Expand Down
53 changes: 40 additions & 13 deletions onlineshop/nest.code-workspace
Original file line number Diff line number Diff line change
@@ -1,19 +1,45 @@
<<<<<<< HEAD
{
"folders": [
{
"name": "Server",
"path": "packages/server"
},
{
"name": "Client",
"path": "packages/client"
},
{
"name": "Configs (Root)",
"path": "."
{
"name": "Server",
"path": "source/server"
},
{
"name": "Client",
"path": "source/client"
},
{
"name": "Configs (Root)",
"path": "."
}
],
"settings": {
"files.exclude": {
"**/.git": true,
"**/node_modules": true,
"**/build": true,
"**/dist": true
},

],
"editor.detectIndentation": false,
"editor.tabSize": 4,
}
=======
{
"folders": [
{
"name": "Server",
"path": "source/server"
},
{
"name": "Client",
"path": "source/client"
},
{
"name": "Configs (Root)",
"path": "."
}
],
"settings": {
"files.exclude": {
"**/.git": true,
Expand All @@ -24,4 +50,5 @@
"editor.detectIndentation": false,
"editor.tabSize": 4,
}
>>>>>>> upstream/master
}
24 changes: 24 additions & 0 deletions onlineshop/sample.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<<<<<<< HEAD
HELLO=app
HTTPS=true
NODE_ENV=development
SERVER_HOST=localhost
SERVER_PORT=3000
SERVER_WEB_HOST=localhost
SERVER_WEB_PORT=4000
DB_USER=postgres
DB_PASSWORD=postgres
DB_NAME=cats
=======
HELLO=app
HTTPS=true
NODE_ENV=development
SERVER_HOST=localhost
SERVER_PORT=3000
SERVER_WEB_HOST=localhost
SERVER_WEB_PORT=4000
DB_USER=postgres
DB_PASSWORD=postgres
DB_NAME=cats
>>>>>>> upstream/master
DB_PORT=5432
Loading