Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dfa1234/taptel

POC ionic + node + sequelize-typescript
https://github.com/dfa1234/taptel

angular5 ionic mysql node sequelize typescript

Last synced: 5 days ago
JSON representation

POC ionic + node + sequelize-typescript

Awesome Lists containing this project

README

        

### Installation:
```bash
yarn global add ionic nodemon
# make sure ~/.yarn/bin/ is in your PATH (so you don't need 'sudo')
yarn

# if there is problem when yarn installs:
# -> Debian/Ubuntu:
sudo apt install build-essential
# -> Windows:
npm install --global --production windows-build-tools

# edit src-api/config.ts with you DB credentials
cp src-api/config.ts.sample src-api/config.ts
# see also the commands to initialize the DB in this file

#Compile website with
ionic build --prod

#start
yarn start

#Redirect node to port 80 (work on debian/ubuntu):
yarn redirect-port
```