Skip to content
Snippets Groups Projects
Commit 32386e1b authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Merge branch 'fix-urls' into 'master'

Update URLs to avoid redirects

See merge request !8
parents 013885f3 a2ccec2c
No related branches found
No related tags found
1 merge request!8Update URLs to avoid redirects
Pipeline #97517 passed
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.
......@@ -41,7 +41,7 @@ If you need, you can manually set the path to 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
-----
......
......@@ -6,5 +6,5 @@ class YarnNotInstalled(CommandError):
def __init__(self):
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 @@
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.
......@@ -22,7 +22,7 @@ Contents:
tests
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 @@
Installation
************
Install `Yarn <http://yarnpkg.com/>`_ from npm:
Install `Yarn <https://yarnpkg.com/>`_ from npm:
.. code-block:: bash
......
......@@ -16,7 +16,7 @@ setup(
keywords='',
author='Dominik George',
author_email='nik@naturalnet.de',
url='https://edugit.org/nik/django-yarnpkg',
url='https://edugit.org/AlekSIS/libs/django-yarnpkg',
license='Apache-2.0',
packages=find_packages(exclude=['example']),
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