#new tab
sudo mongod --config /usr/local/etc/mongod.conf
#check it and if needs kill previous process
lsof -t -i tcp:27017
#sudo kill -9 :pid
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
1. UI-assets-repo-sample provides builder-scripts for generating UI assets for projects. | |
2. Example command line | |
miukki@Anna-Ishmukhametovas-MacBook-Air:~/Sites/ui-assets-repo-sample$ PROJECT=lisa TARGET=desktop yarn run build | |
Desccription: PROJECT=[:project_name] TARGET=[:desktop,:mobile] this params help you init right script in GruntFile and generate scss(SASS) -> css | |
3. scss/main/:projectName.scss (e.g css/main/lisa.scss) is example config for one project. | |
I use processor called processhtml in gruntFile for generate scss assets for particular project . | |
3.1. Output is scss/compiled/*.scss . scss/compiled/main.scss - Compiled core based on bootstrap ui sass |
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
1. UI looks like : [ui1, ...] | |
2. test: | |
2.1 Unit test Jasmin you can check coverage repost /coverage/report-html/index.html | |
2.2 e2e example test -> test/ | |
3. app/scripts/ scripts | |
4. app/data client validation rules (schema), definitions.schema.json - definitions for each rule | |
5. Builder scripts located in gruntFile.js and local-server-launcher also there | |
6. all test sample in test/ | |
7. config/deploy cap deploy sample script | |
8. circle CI script also you can find in repo |
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
1. read repo https://github.com/miukki/nodejs-api-magazine-app | |
2. nodejs framework - strong loop | |
3. I had experience to code backend, restful API |
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
1. patterns: redux-logic, models, components, containers | |
2. tech: jest, docker, flowjs, ES6, native-base, react-native | |
3. test jest-coverage for models https://monosnap.com/file/rNx14x6lrF4HXDyY5nhlBxgJHb0aTh (example how test looks) | |
4. samples https://github.com/miukki/rn-models | |
5. UI screens: https://monosnap.com/file/EKKx3xIrJyWoYt0ME5RNJizNjMsvF3, https://monosnap.com/file/5ImjH34O5pNFt0vJjfpvbUjJ3cwXz5 | |
6. npm packages contibution: | |
https://www.npmjs.com/package/prepsmith-react-native-components, | |
https://www.npmjs.com/package/eic-vocab-app-models, |
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
# cryptography-task | |
## Get Started | |
### Installation | |
``` | |
npm install --save cryptography-task | |
``` |
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
# Javascript Node CircleCI 2.0 configuration file | |
# | |
# Check https://circleci.com/docs/2.0/language-javascript/ for more details | |
# | |
version: 2 | |
jobs: | |
build: | |
docker: | |
# specify the version you desire here | |
- image: circleci/node:8.11-stretch-browsers |
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
version: 2 | |
jobs: | |
build: | |
docker: | |
- image: circleci/node:10 | |
working_directory: ~/repo | |
steps: |
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
# config valid only for current version of Capistrano | |
lock '3.6.1' | |
set :application, 'eic-lisa-web' | |
set :repo_url, '[email protected]:Prepsmith/eic-lisa-web.git' | |
set :deploy_to, '/home/eic/static/lisa' | |
set :linked_dirs, fetch(:linked_dirs, []).push('node_modules', 'bower_components') |
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
version: "2" | |
services: | |
app: | |
container_name: app | |
restart: always | |
build: . | |
ports: | |
- "3000:3000" | |
links: | |
- mongo |
OlderNewer