isofire
v0.4.10
Published
### Link Isofire within your Project 1. Link Isofire to your Project ``` cd PATH_TO/isofire npm link
Downloads
79
Readme
Development
Link Isofire within your Project
- Link Isofire to your Project
cd PATH_TO/isofire
npm link
cd PATH_TO/project
npm link isofire
- Link your Project's rxjs to Isofire (the other way around)
cd node_modules/rxjs
npm link
cd PATH_TO/isofire
npm link rxjs
npm start
Start a new App
mkdir 11bookings && cd 11bookings
code .
git init
git remote add origin [email protected]:rechenberger/11bookings.git
ng new --style=scss --routing --skip-tests --directory client eleven-bookings
code .gitignore
# dependencies
**/node_modules
# IDEs and editors
/.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace
# IDE - VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
# System Files
.DS_Store
Thumbs.db
# VS Code Share (?)
.vs/slnx.sqlite
# Firebase Tools Cache
.firebase
mv client/package.json package.json
mv client/package-lock.json package-lock.json
mv client/node_modules/ node_modules
mv client/angular.json angular.json
sed -i '' s/src/client\\/src/g angular.json
mv client/tslint.json tslint.json
sed -i '' s/..\\/tslint.json/..\\/..\\/tslint.json/g client/src/tslint.json
code tslint.json
# Customize the file as you like
# remove e2e form angular.json to do:
ng lint --fix
ng add @angular/material
npm i rxjs-compat
code client/src/rxjs-compat.ts
# ... add your imports
code client/src/main.ts
# add the following:
import './rxjs-compat'