Commit graph

117 commits

Author SHA1 Message Date
Ben Gotow d87a602c8b Add Roadmap doc 2017-08-10 15:19:21 -07:00
Ben Gotow 79b3d58f90 Turn Travis and Appveyor back on 2017-08-02 12:54:13 -07:00
Ben Gotow e0d4ffc9e4 Add screenshot back to README 2017-08-02 12:46:04 -07:00
Ben Gotow bece6afeeb Minor changes to the README 2017-08-02 12:43:09 -07:00
Ben Gotow aa2e2a7624 Remove APM for now 2017-07-11 12:15:47 -07:00
Ben Gotow a7e545b924 Update readme 2017-07-11 10:01:05 -07:00
Ben Gotow 80a5908e23 Update fork readme 2017-07-08 12:57:42 -07:00
BinHong Lee 0d8f85afa7 Fix broken image url in README.md (#3349) 2017-04-17 17:17:27 -07:00
Juan Tejada be5c3d27e5 Merge private repo 2017-04-17 17:17:05 -07:00
Evan Morikawa 27c08d86e7 [*] update and add READMEs to each package
Summary:
Adding READMEs for easy and helpful browsing on GitHub.
Also add missing script and `--interpreter` flag

Test Plan: Run new launch commands

Reviewers: mark, spang, juan, halla

Reviewed By: spang, juan, halla

Differential Revision: https://phab.nylas.com/D3971
2017-02-17 17:28:09 -08:00
Evan Morikawa 918fa0b6dd [*] move to monorepo
[*] update babel

[client-app] remove flow-typed

[client-app] Move build/package.json to main package.json

[client-app] remove spec_integration

[client-app] fix babel support

Add client-private-plugins package.json

[client-app] add node_modules to global path for private-plugins

Move client-sync dependencies to client-app root

fix electron rebuild

[*] moved to monorepo

Summary: App now runs in monorepo

Test Plan: npm test

Reviewers: juan, mark, khamidou, halla, spang

Differential Revision: https://phab.nylas.com/D3947
2017-02-16 18:46:26 -08:00
Evan Morikawa 9407533f51 [client-*] Rename packages folders and update readme 2017-02-16 13:31:37 -08:00
Avinash Kuduvalli a4b147452d Update README.md (#3255) 2017-02-02 21:24:43 -08:00
Michael Grinich 8bd013e9e9 Update docs config
- Don't ignore built class docs
- pin requirement versions for docs
- update docs build instructions
- update repo URL
2017-01-30 13:05:36 -08:00
Evan Morikawa bf0aa51148 fix(rename): update nylas/N1 to nylas/nylas-mail Github references 2017-01-30 11:50:39 -08:00
Michael Grinich 70acab2665 Update README.md 2017-01-30 03:18:52 -08:00
Forbes Lindesay 7347861f06 Add the GitHub community plugin (#3197) 2017-01-30 02:47:35 -08:00
Richard Lai ca0d9eb0a4 Fix typo (#3173) 2017-01-30 02:47:28 -08:00
Michael Grinich 05da3a6c0d Update documentation with GitBook 2017-01-30 02:38:37 -08:00
Christine Spang d0bbb1663e fix typo 2017-01-24 13:58:09 -08:00
Evan Morikawa fcfae5d490 Fix references for ~/.nylas to ~/.nylas-mail
Summary: Fix references to nylas-mail

Test Plan: manual

Reviewers: jackie, juan

Reviewed By: juan

Differential Revision: https://phab.nylas.com/D3674
2017-01-13 18:54:37 -08:00
Jackie Luo 78a7388318 🎨(rename): Update Nylas N1 to Nylas Mail
Test Plan: Tested locally.

Reviewers: halla, juan, evan

Reviewed By: juan, evan

Differential Revision: https://phab.nylas.com/D3645
2017-01-12 12:05:44 -08:00
Jackie Luo 21049b2a1f Update Nylas N1 to Nylas Mail
Test Plan: Tested locally.

Reviewers: juan, evan

Reviewed By: juan, evan

Differential Revision: https://phab.nylas.com/D3644
2017-01-12 11:25:39 -08:00
Evan Morikawa f08e03803c Readme updates 2016-11-28 14:13:23 -08:00
Ben Gotow 27ba2544dd Pull in cloud packages 2016-11-22 10:58:27 -08:00
Evan Morikawa b13aa32f60 fix(readme): minor readme changes 2016-11-21 18:18:21 -08:00
Ben Gotow 0c6f508541 fix(readme): Remove readme to prevent overwriting on script/bootstrap 2016-11-09 15:16:44 -08:00
Ben Gotow 1157fdc450 build(*): electron-compile, electron-packager instead of custom tooling
Summary:
This diff removes significant cruft from N1's compilation and build tooling:

- Electron-Packager replaces most of the code in build/tasks/* used to copy things,
  bundle things, download electron, etc.

- script/bootstrap has been replaced with a much simpler script that does not use
  APM, does not download Electron (we just use electron as an NPM dep) and does
  not manully compile sqlite. It requires NPMv3, but I think that's safe.

- babel and eslint are now devDependencies of the main project. The main project
  also supports optionalDependencies now.

- npm test and npm start replace ./N1.sh

- APM is still around, and is only put into N1 so it can install plugins at runtime.
  It should be removed as soon as we notify package maintainers and have them provide zips.

- N1 no longer has it's own compile-cache or babel/typescript/coffeescript compilers.
  It delegates to electron-compile and electron-compilers. Both of these packages had
  to be forked and modified slightly, but I'm hopeful the modifications will make it back
  in to the projects and you can still consult their documentation for more info.

  + In the near future, I think we should stop shipping electron-compilers with N1. This
    would mean that all plugins would need to be compiled on pre-publish, just like NPM
    packages, and would complicate the local development story a bit, but would make the
    app smaller. electron-compile is not supposed to compile at runtime in the prod app,
    just pull from the compile cache.

- I've re-organized Grunt according to Grunt best practices, where each tasks/* file
  specifies it's own config and imports grunt tasks.

- Unfortunately, I was not able to use any open source projects for the deb and rpm builds,
  because we have things like postinst hooks and start menu items which are not supported
  by the electron installer-generators.

WIP

Turn off all LESS compilation, because themes. Doh.

Use Grunt for new build process too, just remove tasks

More changes

Add babel-eslint

Remove unused react-devtools

WIP

Add name

Ignore nonexistent

Switch to more modern approach to config for grunt

Move zipping to mac installer task

Restructure publish task so it aggregates first, can log useful info if publishing is disabled

Fix build dirs

Fix win installer

Fix linux installer

Fix linux installer

Try making linux

A few more

Updates

Upadtes

fixes

fixes

Get rid of non-meaningful variables

Resolve assets path

Insert nylas.sh

Clean up args more

Actually use description

Fix display name ugh

More tweaks

Expliclty write /usr/bin/nylas

Improve vars

Use old nylas.sh

Reinstate APM to better scope this diff

Test Plan: Test on Mac, Windows, Linux

Reviewers: evan, jackie, juan

Reviewed By: jackie, juan

Differential Revision: https://phab.nylas.com/D3411
2016-11-09 13:52:10 -08:00
Luke Schlangen f53cc3bde0 Fixing broken screenshot link (#2911)
Replacing with new screenshot
2016-10-06 18:48:12 -07:00
cem guresci 398467d668 Add link for Darkish theme (#2854) 2016-09-19 08:52:24 -07:00
Gleb Polyakov 78a999feb7 Update Community Plugin Link
Changed todoist link to more polished integration at : https://github.com/alexfruehwirth/N1TodoistIntegration
2016-09-12 11:57:16 -07:00
Michael Grinich 38ce0e5b99 more themes 2016-09-11 21:49:44 -07:00
Michael Grinich cc2904c481 Update README.md 2016-09-11 21:25:02 -07:00
Michael Grinich 5f8693c2a5 add theme img 2016-08-30 14:46:48 -07:00
Michael Grinich f08e8a268a theme notes 2016-08-30 10:53:36 -07:00
Wattenberger 024d5db14e Add Snow to README (#2711) 2016-08-08 18:36:21 -07:00
Ira Praharaj f8bb60fdd7 Updated readme to include BoraBora and Honeyduke theme (#2708) 2016-08-08 10:01:47 -07:00
Jackie Luo 5877ebf85a update(readme): Fix typo 2016-07-21 22:45:52 -07:00
Jackie Luo 6a628102ba feat(self-hosting): Add onboarding flow for self-hosted sync engine
Summary:
Adds a fun new UI for adding accounts to the sync engine. After creating your sync engine instance, all you have to do is auth your accounts on the command line and then enter the URL/port number in this flow. That pulls all of your accounts from the `/accounts` endpoint, mocks an identity token, and edits your `config.json` properly.

TODO: Update the docs in the repo and revert the PR with the temporary fix.

Test Plan: Tested locally.

Reviewers: bengotow, halla, juan

Reviewed By: halla, juan

Differential Revision: https://phab.nylas.com/D3114
2016-07-21 14:25:30 -07:00
Ben Gotow 547228b52a fix(readme): Add Kleinstein description 2016-07-20 14:59:07 -07:00
David Klein 632c3e6bc7 Update README to include Kleinstein theme (#2645)
This theme hides the account list sidebar.
2016-07-18 20:31:06 -07:00
Christine Spang caab8474f7 Add Linux setup instructions to README.md 2016-07-11 18:36:08 -07:00
Juan Tejada dce872fac8 Adds bunyan for json logging on every package!
- Bunyan logs json output, and added a stream to send our logs to
cloudwatch
- Replaces /all/ instances of console.log. Turned eslint rule back on,
so we don't use console.log ever again.
- Added npm scripts to view pretty logs
2016-07-08 17:30:24 -07:00
Evan Morikawa ab3713830c Readme fixes 2016-07-08 12:12:11 -04:00
Evan Morikawa 6fecf0e40d Add redis to local pm2 2016-07-08 12:00:57 -04:00
Ben Gotow f2418cef57 Minor updates to readme 2016-07-07 16:06:04 -07:00
Evan Morikawa 189cf21d2a Commit to test Docker automatic builds 2016-07-07 12:39:31 -07:00
Evan Morikawa a97ed5a311 Added Dockerrun.aws.json 2016-07-07 12:10:01 -07:00
Jackie Luo 6837c0d675 update(readme): Remove Scheduler from plugins list 2016-06-29 17:19:03 -07:00
Juan Tejada 7e2c487034 Update README with auth instructions 2016-06-24 11:57:24 -07:00