-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update getting started content, license date, contributing link, .git…
…ignore & add custom `npm start` 🚀
- Loading branch information
Showing
12 changed files
with
486 additions
and
95 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,3 +47,4 @@ bundle.tar.gz | |
jsdoc-conf.json | ||
jsdoc.json | ||
packages/nova-router/.npm | ||
npm-debug.log |
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
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
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
If you want to learn how to customize Nova, we suggest checking out the [Read Me](https://github.com/TelescopeJS/Telescope) on GitHub. | ||
If you want to learn how to customize Nova, we suggest checking out the [docs](http://nova-docs.telescopeapp.org) on GitHub. | ||
|
||
The first things you'll want to do are probably create a `settings.json` file to hold all your settings, and then taking a look at the sample custom package by uncommenting `my-custom-package` in `.meteor/packages`. | ||
The first things you'll want to do are probably create a `settings.json` file to hold all your settings, and then taking a look at the sample custom package by uncommenting `customization-demo` in `.meteor/packages`. | ||
|
||
Here are two tutorials to get further: | ||
* [Understanding the Nova Framework](http://nova-docs.telescopeapp.org/tutorial-framework.html ) | ||
* [Customizing & Extending Nova](http://nova-docs.telescopeapp.org/tutorial-customizing.html) | ||
|
||
Happy hacking! |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
Once you've played around with Nova, you might want to deploy your app for the whole world to see. | ||
|
||
We recommend using [Meteor Up X (MupX)](https://github.com/arunoda/meteor-up/tree/mupx) to deploy to a [Digital Ocean](http://digitalocean.com) server, along with [Compose](http://compose.io) to host your database. | ||
We recommend using [Meteor Up](https://github.com/kadirahq/meteor-up) to deploy to a [Digital Ocean](http://digitalocean.com) server, along with [Compose](http://compose.io) to host your database. | ||
|
||
Other good alternatives include [Galaxy](http://galaxy.meteor.com/) and [Scalingo](http://scalingo.com). | ||
Other good alternatives include [Galaxy](http://galaxy.meteor.com/) and [Scalingo](http://scalingo.com). | ||
|
||
Learn more in the [Nova docs](http://nova-docs.telescopeapp.org/deployment.html). |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,7 @@ | ||
### Telescope Meta | ||
|
||
If you have a question, the best place to ask is [Telescope Meta](http://meta.telescopeapp.org). | ||
|
||
### Slack Chatroom | ||
|
||
You can also drop by the [Slack chatroom](http://slack.telescopeapp.org) to get help or just say hello! | ||
|
||
### Stack Overflow | ||
|
||
Another good place to ask Telescope questions is [Stack Overflow](http://stackoverflow.com/questions/tagged/telescope). Just make sure you use the `telescope` tag! | ||
If you have a question, the best place to ask is the [Slack chatroom](http://slack.telescopeapp.org) to get help. Or you can also drop to just say hello! | ||
|
||
### GitHub Issues | ||
|
||
Finally, if you've found a bug in Telescope, then please [leave an issue on GitHub](https://github.com/TelescopeJS/Telescope/issues). | ||
If you've found a bug in Telescope, then please [leave an issue on GitHub](https://github.com/TelescopeJS/Telescope/issues). |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
purple=$(tput setaf 141) | ||
blue=$(tput setaf 153) | ||
bold=$(tput bold) | ||
reset=$(tput sgr0) | ||
|
||
test -f settings.json || (echo "🛠 ${blue}Creating your own settings.json file...\n"; cp sample_settings.json settings.json;) | ||
|
||
echo "🔭 ${bold}${purple}Happy hacking with Telescope Nova!${reset}"; | ||
|
||
echo "📖 ${blue}The docs are available at: ${purple}http://nova-docs.telescopeapp.org"; | ||
|
||
tput sgr0; |
Oops, something went wrong.