Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 797 Bytes

File metadata and controls

29 lines (19 loc) · 797 Bytes

Troubleshooting

This section describes a few troubleshooting suggestions that may help you should problems occur. If not, feel free to file issues on our GitHub repo: https://github.com/interbit/interbit

  • Double check the version requirements at the top of this page.

  • The following steps should get your application into a clean state:

    The shell commands need to be executed from the repository root folder.

    1. Stop the application processes (type Ctrl-C into each terminal).

    2. Remove all node_modules folders:

      node_modules/.bin/lerna clean
    3. Remove the top-level package-lock.json file:

      rm -f package-lock.json
    4. Repeat the installation steps.

    5. Run your app again.