Skip to content
This repository was archived by the owner on Dec 15, 2019. It is now read-only.

Commit 017ac00

Browse files
committed
Update repo references
1 parent 1eb82df commit 017ac00

File tree

8 files changed

+25
-27
lines changed

8 files changed

+25
-27
lines changed

.github/CONTRIBUTING.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Contribution Guidelines
22

33
Already JS / VueJS developer? Pick an existing issue, push a PR and become a vue-cloudfront contributor!
4-
I'll mark some issues as [contribution welcome](https://github.com/Simonwep/vue-cloudfront/labels/contribution%20welcome) which are not that hard and can be easily fixed / implemented (if feature).
4+
I'll mark some issues as [contribution welcome](https://github.com/ovanta/vue-cloudfront/labels/contribution%20welcome) which are not that hard and can be easily fixed / implemented (if feature).
55

6-
Before you create a PR or issue please take a look at the [README](https://github.com/Simonwep/vue-cloudfront/blob/master/README.md)
6+
Before you create a PR or issue please take a look at the [README](https://github.com/ovanta/vue-cloudfront/blob/master/README.md)
77

88
While writing issues / making PRs, please be as specific as possible.
99

@@ -17,14 +17,14 @@ Please use "develop" for development purposes or, if related to a new feature, t
1717

1818
#### Issue checklist
1919

20-
1. Try the [dev](https://github.com/Simonwep/vue-cloudfront/tree/dev) -branch, perhaps the problem has been solved.
21-
2. [Use the search](https://github.com/Simonwep/vue-cloudfront/search?type=Issues), maybe there is already an answer.
22-
3. If not found, [create an issue](https://github.com/Simonwep/vue-cloudfront/issues/new), please don't forget to carefully describe how to reproduce it / pay attention to the issue-template.
20+
1. Try the [dev](https://github.com/ovanta/vue-cloudfront/tree/dev) -branch, perhaps the problem has been solved.
21+
2. [Use the search](https://github.com/ovanta/vue-cloudfront/search?type=Issues), maybe there is already an answer.
22+
3. If not found, [create an issue](https://github.com/ovanta/vue-cloudfront/issues/new), please don't forget to carefully describe how to reproduce it / pay attention to the issue-template.
2323

2424
#### Pull request checklist
2525

2626
1. Before a Pull request run `npm run lint` and `npm run build` and resolve remaining issues.
2727
2. Please take care about basic commit message convetions, see [Writing Good Commit Messages](https://github.com/erlang/otp/wiki/writing-good-commit-messages).
28-
3. Pull requests only into [dev](https://github.com/Simonwep/vue-cloudfront/tree/dev) or for new features in the corresponding branch.
28+
3. Pull requests only into [dev](https://github.com/ovanta/vue-cloudfront/tree/dev) or for new features in the corresponding branch.
2929
4. Reference any relevant issues / PRs in your PR.
3030

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414

1515
Vue Cloudfront is a blazing fast, standalone PWA cloudfront, basically for self-hosting purposes.
16-
Currently the only backend-solution is the official [vue-cloudfront-api](https://github.com/Simonwep/vue-cloudfront-api) which is a fully-featured RESTful api. This project is and will always be open source, anybody can contribute to it - it should, and hopefully will be, a massive improvement regarding cloud solutions in contrast to google-drive and drop-box. The project is currently in the **alpha** phase.
16+
Currently the only backend-solution is the official [vue-cloudfront-api](https://github.com/ovanta/vue-cloudfront-api) which is a fully-featured RESTful api. This project is and will always be open source, anybody can contribute to it - it should, and hopefully will be, a massive improvement regarding cloud solutions in contrast to google-drive and drop-box. The project is currently in the **alpha** phase.
1717

1818
For anyone who wants some guidance, feel free to contact me on Discord: `Simon#6765`
1919

docs/config.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Configuration file
2-
Below is a description of each property in [config.json](https://github.com/Simonwep/vue-cloudfront/blob/master/config/config.json) which
2+
Below is a description of each property in [config.json](https://github.com/ovanta/vue-cloudfront/blob/master/config/config.json) which
33
is used to define general behaviour of vue-cloudfront.
44

55
**`apiEndPoint`**
@@ -23,5 +23,5 @@ This prop can be either `null` to disable it, a string to set a fixed message or
2323
Thanks to [NateSeymour](https://github.com/NateSeymour), who provided the messages that are currently in use.
2424

2525
**`predefinedColors`**
26-
Pre-defined colors for [ColorChooser.vue](https://github.com/Simonwep/vue-cloudfront/blob/master/src/vue/components/application/tabs/navigator/contextmenu/ColorChooser.vue).
27-
Currently only used in the [ContextMenu](https://github.com/Simonwep/vue-cloudfront/tree/master/src/vue/components/application/tabs/navigator/contextmenu)
26+
Pre-defined colors for [ColorChooser.vue](https://github.com/ovanta/vue-cloudfront/blob/master/src/vue/components/application/tabs/navigator/contextmenu/ColorChooser.vue).
27+
Currently only used in the [ContextMenu](https://github.com/ovanta/vue-cloudfront/tree/master/src/vue/components/application/tabs/navigator/contextmenu)

docs/installation/linux.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ However, I develop the project using Windows machines.
1212
## Installation of vue-cloudfront-api
1313

1414
1. Open bash with [Git](https://git-scm.com/download/win) access or use Github desktop
15-
2. Clone the [vue-cloudfront-api](https://github.com/Simonwep/vue-cloudfront-api) project:
15+
2. Clone the [vue-cloudfront-api](https://github.com/ovanta/vue-cloudfront-api) project:
1616

1717
```bash
18-
git clone https://github.com/Simonwep/vue-cloudfront-api
18+
git clone https://github.com/ovanta/vue-cloudfront-api
1919
```
2020

2121
3. Go to `vue-cloudfront-api` and install dependencies:
@@ -34,7 +34,7 @@ npm run dev
3434
## Installation of vue-cloudfront
3535

3636
1. Open your cmdline of choice with [Git](https://git-scm.com/download/win) access or use Github desktop
37-
2. Clone the [vue-cloudfront](https://github.com/Simonwep/vue-cloudfront) project:
37+
2. Clone the [vue-cloudfront](https://github.com/ovanta/vue-cloudfront) project:
3838

3939
```bash
4040
git clone https://github.com/DivanteLtd/vue-cloudfront.git
@@ -48,7 +48,7 @@ npm install
4848
```
4949

5050
4. Configure `vue-cloudfront`
51-
Since nginx is not used during development there are two properties which need to be changed in [config.json](https://github.com/Simonwep/vue-cloudfront/blob/master/config/config.json):
51+
Since nginx is not used during development there are two properties which need to be changed in [config.json](https://github.com/ovanta/vue-cloudfront/blob/master/config/config.json):
5252
```json
5353
"apiEndPoint": "http://localhost:8080/api",
5454
"websocketEndPoint": "ws://localhost:8080/ws"

docs/installation/mac.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ However, I develop the project using Windows machines.
1212
## Installation of vue-cloudfront-api
1313

1414
1. Open the terminal with [Git](https://git-scm.com/download/win) access or use Github desktop
15-
2. Clone the [vue-cloudfront-api](https://github.com/Simonwep/vue-cloudfront-api) project:
15+
2. Clone the [vue-cloudfront-api](https://github.com/ovanta/vue-cloudfront-api) project:
1616

1717
```bash
18-
git clone https://github.com/Simonwep/vue-cloudfront-api
18+
git clone https://github.com/ovanta/vue-cloudfront-api
1919
```
2020

2121
3. Go to `vue-cloudfront-api` and install dependencies:
@@ -34,7 +34,7 @@ npm run dev
3434
## Installation of vue-cloudfront
3535

3636
1. Open your cmdline of choice with [Git](https://git-scm.com/download/win) access or use Github desktop
37-
2. Clone the [vue-cloudfront](https://github.com/Simonwep/vue-cloudfront) project:
37+
2. Clone the [vue-cloudfront](https://github.com/ovanta/vue-cloudfront) project:
3838

3939
```bash
4040
git clone https://github.com/DivanteLtd/vue-cloudfront.git
@@ -48,7 +48,7 @@ npm install
4848
```
4949

5050
4. Configure `vue-cloudfront`
51-
Since nginx is not used during development there are two properties which need to be changed in [config.json](https://github.com/Simonwep/vue-cloudfront/blob/master/config/config.json):
51+
Since nginx is not used during development there are two properties which need to be changed in [config.json](https://github.com/ovanta/vue-cloudfront/blob/master/config/config.json):
5252
```json
5353
"apiEndPoint": "http://localhost:8080/api",
5454
"websocketEndPoint": "ws://localhost:8080/ws"

docs/installation/production-setup.md

-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ docker-compose up -d
5252
After this is done, we need to configure nginx to proxy each request to its correspondending endpoint:
5353
```bash
5454
Domain=example.com
55-
VueCloudfrontPath=/home/me/vue-cloudfront
5655
cat > /etc/nginx/conf.d/${Domain}.conf <<EOL
5756
server {
5857
listen 80;
@@ -82,7 +81,6 @@ server {
8281
}
8382
8483
# Restrict TLS protocols and some ssl improvements
85-
ssl_protocols TLSv1.2;
8684
ssl_ecdh_curve secp521r1:secp384r1;
8785
8886
# Hide upstream proxy headers

docs/installation/windows.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Installing on Windows
22
The steps below are tested on Windows environments.
3-
If you're on Linux please check [Linux Installation Tutorial](https://github.com/Simonwep/vue-cloudfront/docs/installation/linux.md),
4-
if on mac: [Mac Installation Tutorial](https://github.com/Simonwep/vue-cloudfront/docs/installation/mac.md).
3+
If you're on Linux please check [Linux Installation Tutorial](https://github.com/ovanta/vue-cloudfront/docs/installation/linux.md),
4+
if on mac: [Mac Installation Tutorial](https://github.com/ovanta/vue-cloudfront/docs/installation/mac.md).
55

66
## Requirements
77

@@ -13,10 +13,10 @@ if on mac: [Mac Installation Tutorial](https://github.com/Simonwep/vue-cloudfron
1313
## Installation of vue-cloudfront-api
1414

1515
1. Open the terminal with [Git](https://git-scm.com/download/win) access or use Github desktop
16-
2. Clone the [vue-cloudfront-api](https://github.com/Simonwep/vue-cloudfront-api) project:
16+
2. Clone the [vue-cloudfront-api](https://github.com/ovanta/vue-cloudfront-api) project:
1717

1818
```bash
19-
git clone https://github.com/Simonwep/vue-cloudfront-api
19+
git clone https://github.com/ovanta/vue-cloudfront-api
2020
```
2121

2222
3. Go to `vue-cloudfront-api` and install dependencies:
@@ -35,7 +35,7 @@ npm run dev
3535
## Installation of vue-cloudfront
3636

3737
1. Open your cmdline of choice with [Git](https://git-scm.com/download/win) access or use Github desktop
38-
2. Clone the [vue-cloudfront](https://github.com/Simonwep/vue-cloudfront) project:
38+
2. Clone the [vue-cloudfront](https://github.com/ovanta/vue-cloudfront) project:
3939

4040
```bash
4141
git clone https://github.com/DivanteLtd/vue-cloudfront.git
@@ -49,7 +49,7 @@ npm install
4949
```
5050

5151
4. Configure `vue-cloudfront`
52-
Since nginx is not used during development there are two properties which need to be changed in [config.json](https://github.com/Simonwep/vue-cloudfront/blob/master/config/config.json):
52+
Since nginx is not used during development there are two properties which need to be changed in [config.json](https://github.com/ovanta/vue-cloudfront/blob/master/config/config.json):
5353
```json
5454
"apiEndPoint": "http://localhost:8080/api",
5555
"websocketEndPoint": "ws://localhost:8080/ws"

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
],
2121
"repository": {
2222
"type": "git",
23-
"url": "git+https://github.com/Simonwep/vue-cloudfront.git"
23+
"url": "git+https://github.com/ovanta/vue-cloudfront.git"
2424
},
2525
"scripts": {
2626
"build": "vue-cli-service build",

0 commit comments

Comments
 (0)