Skip to content
This repository was archived by the owner on Mar 6, 2023. It is now read-only.

Commit 7df7ffa

Browse files
committed
Fixed default server ports
1 parent e5117da commit 7df7ffa

File tree

4 files changed

+1780
-1780
lines changed

4 files changed

+1780
-1780
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
11
# Exceptionless.UI
2-
[![Build status](https://ci.appveyor.com/api/projects/status/18th2gqmbt86p5y0/branch/master?svg=true)](https://ci.appveyor.com/project/Exceptionless/exceptionless-ui)
2+
[![Build status](https://ci.appveyor.com/api/projects/status/18th2gqmbt86p5y0/branch/master?svg=true)](https://ci.appveyor.com/project/Exceptionless/exceptionless-ui)
33
[![Slack Status](https://slack.exceptionless.com/badge.svg)](https://slack.exceptionless.com)
4-
[![Donate](https://img.shields.io/badge/donorbox-donate-blue.svg)](https://donorbox.org/exceptionless)
4+
[![Donate](https://img.shields.io/badge/donorbox-donate-blue.svg)](https://donorbox.org/exceptionless)
55

66
Exceptionless User Interface
77

88
## Using Exceptionless
99
Refer to the [Exceptionless documentation wiki](https://github.com/exceptionless/Exceptionless/wiki/Getting-Started).
1010

1111
## Hosting Options
12-
We provide very reasonably priced hosting at [Exceptionless](http://exceptionless.com). By using our hosted service, you are supporting the project and helping it get better! We also provide set up and support services.
12+
We provide very reasonably priced hosting at [Exceptionless](https://exceptionless.com). By using our hosted service, you are supporting the project and helping it get better! We also provide set up and support services.
1313

1414
If you would rather host Exceptionless yourself, you will need to follow the [self hosting documentation](https://github.com/exceptionless/Exceptionless/wiki/Self-Hosting).
1515

1616
## Contributing
17-
_In appreciation for anyone who submits a non-trivial pull request, we will give you a free [Exceptionless](http://exceptionless.io) paid plan for a year. After your pull request is accepted, simply send an email to [email protected] with the name of your organization and we will upgrade you to a paid plan._
17+
_In appreciation for anyone who submits a non-trivial pull request, we will give you a free [Exceptionless](https://exceptionless.io) paid plan for a year. After your pull request is accepted, simply send an email to [email protected] with the name of your organization and we will upgrade you to a paid plan._
1818

1919
Please read the [contributing document](https://github.com/exceptionless/Exceptionless/blob/master/CONTRIBUTING.md) and follow the steps below to start configuring your Exceptionless development environment.
2020

2121
1. You will need to clone this repo.
22-
2. Install dependencies using [npm](https://www.npmjs.com/).
22+
2. Install [grunt](https://gruntjs.com/) and the development dependencies using [npm](https://www.npmjs.com/).
2323

2424
```javascript
2525
npm install
2626
```
27-
3. Download the JavaScript dependencies by running the following [bower](http://bower.io/) command.
27+
3. Download the JavaScript dependencies by running the following [bower](https://bower.io/) command.
2828

2929
```javascript
3030
npx bower install
3131
```
32-
4. Start a web server and view it on [`http://localhost:9001`](http://localhost:9001) by running the following grunt command.
32+
4. Start a web server and view it on [`http://ex.localtest.me:9001`](http://ex.localtest.me:9001) by running the following grunt command.
3333

3434
```javascript
3535
npx grunt serve

src/app.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
'use strict';
33

44
angular.module('app.config', [])
5-
.constant('BASE_URL', 'http://localhost:50000')
5+
.constant('BASE_URL', 'https://localhost:5001')
66
.constant('EXCEPTIONLESS_API_KEY')
77
.constant('EXCEPTIONLESS_SERVER_URL')
88
.constant('FACEBOOK_APPID')

src/app_data/jobs/triggered/config/run.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ var md5 = require('md5');
55
var replace = require("replace");
66

77
function updateAppConfig() {
8-
var baseURL = process.env.Exceptionless_BaseURL ? process.env.Exceptionless_BaseURL : 'http://localhost:50000';
8+
var baseURL = process.env.Exceptionless_BaseURL ? process.env.Exceptionless_BaseURL : 'http://localhost:5001';
99
var exceptionlessApiKey = process.env.Exceptionless_ApiKey ? process.env.Exceptionless_ApiKey : '';
1010
var exceptionlessServerUrl = process.env.Exceptionless_ServerUrl ? process.env.Exceptionless_ServerUrl : '';
1111
var facebookAppId = process.env.Exceptionless_FacebookAppId ? process.env.Exceptionless_FacebookAppId : '';

0 commit comments

Comments
 (0)