Skip to content
Snippets Groups Projects
Commit a2ccec2c authored by Edward Betts's avatar Edward Betts
Browse files

Update URLs to avoid redirects

parent 013885f3
No related branches found
No related tags found
1 merge request!8Update URLs to avoid redirects
Django-yarnpkg Django-yarnpkg
============== ==============
Easy way to use `yarnpkg <http://yarnpkg.com/>`_ with your `Django <https://www.djangoproject.com/>`_ project. Easy way to use `yarnpkg <https://yarnpkg.com/>`_ with your `Django <https://www.djangoproject.com/>`_ project.
This is a fork of `django-bower <https://github.com/nvbn/django-bower>` by Vladimir Iakovlev. This is a fork of `django-bower <https://github.com/nvbn/django-bower>` by Vladimir Iakovlev.
...@@ -41,7 +41,7 @@ If you need, you can manually set the path to yarnpkg: ...@@ -41,7 +41,7 @@ If you need, you can manually set the path to yarnpkg:
YARN_PATH = '/usr/bin/yarnpkg' YARN_PATH = '/usr/bin/yarnpkg'
You can see an example settings file in `example project <https://edugit.org/nik/django-yarnpkg/blob/master/example/example/settings.py>`_. You can see an example settings file in `example project <https://edugit.org/AlekSIS/libs/django-yarnpkg/blob/master/example/example/settings.py>`_.
Usage Usage
----- -----
......
...@@ -6,5 +6,5 @@ class YarnNotInstalled(CommandError): ...@@ -6,5 +6,5 @@ class YarnNotInstalled(CommandError):
def __init__(self): def __init__(self):
super(YarnNotInstalled, self).__init__( super(YarnNotInstalled, self).__init__(
"Yarn not installed, read instruction here - http://yarnpkg.com/", "Yarn not installed, read instruction here - https://yarnpkg.com/",
) )
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
Welcome to django-yarnpkg's documentation! Welcome to django-yarnpkg's documentation!
======================================== ========================================
Easy way to use `Yarn <http://yarnpkg.com/>`_ with your `django <https://www.djangoproject.com/>`_ project. Easy way to use `Yarn <https://yarnpkg.com/>`_ with your `django <https://www.djangoproject.com/>`_ project.
Yarn is a package manager for the web. It offers a generic, unopinionated solution to the problem of front-end package management, while exposing the package dependency model via an API that can be consumed by a more opinionated build stack. There are no system wide dependencies, no dependencies are shared between different apps, and the dependency tree is flat. Yarn is a package manager for the web. It offers a generic, unopinionated solution to the problem of front-end package management, while exposing the package dependency model via an API that can be consumed by a more opinionated build stack. There are no system wide dependencies, no dependencies are shared between different apps, and the dependency tree is flat.
...@@ -22,7 +22,7 @@ Contents: ...@@ -22,7 +22,7 @@ Contents:
tests tests
example example
`Visit django-yarnpkg github page. <https://edugit.org/nik/django-yarnpkg>`_ `Visit django-yarnpkg EduGit page. <https://edugit.org/AlekSIS/libs/django-yarnpkg>`_
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
Installation Installation
************ ************
Install `Yarn <http://yarnpkg.com/>`_ from npm: Install `Yarn <https://yarnpkg.com/>`_ from npm:
.. code-block:: bash .. code-block:: bash
......
...@@ -16,7 +16,7 @@ setup( ...@@ -16,7 +16,7 @@ setup(
keywords='', keywords='',
author='Dominik George', author='Dominik George',
author_email='nik@naturalnet.de', author_email='nik@naturalnet.de',
url='https://edugit.org/nik/django-yarnpkg', url='https://edugit.org/AlekSIS/libs/django-yarnpkg',
license='Apache-2.0', license='Apache-2.0',
packages=find_packages(exclude=['example']), packages=find_packages(exclude=['example']),
include_package_data=True, include_package_data=True,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment