Welcome to mirror list, hosted at ThFree Co, Russian Federation.

storedeveloper.rst « docs - github.com/nextcloud/appstore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4ac13333b1adabd1c7ca138c7d85dbe95d2c398f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
Store Development
=================
The app store uses a Makefile for common tasks. The following useful Make commands are available:


make dev-setup
    installs a local development setup (requires previous setup, see :doc:`devinstall`)

make test
    runs the frontend and backend test suite

make lint
    runs the code-style checker

make authors
    updates the AUTHORS.rst file based on the git database

make docs
    regenerates up to html date docs in docs/_build/html

make update-dev-deps
    updates your python, bower and yarn dependencies

make resetup
    kills the current sqlite database and creates a new one

make test-data
    downloads and sets up test apps, needs certificate validation to be disabled and a running server at http://127.0.0.1:8000 . Keep in mind that in order to display any app releases on the page you need to first sync :ref:`the available nextcloud releases <prod_install_release_sync>` with the oldest version being **11.0.0**

make prod-data prod_version=12.0.0
    similar to **make test-data** but installs all apps from production for a nextcloud version locally

make l10n
    compiles and installs translations

Frontend
--------

The frontend is written in TypeScript and compiles to ES6 using Webpack.

To run the frontend build make sure that all your deps are up to date::

    yarn install

and then run::

    yarn run build

If you are developing and wish to automatically compile on filechanges run::

    yarn run watch


Users
~~~~~

By default the following users will be ready to use:

* admin

Running **make test-data** will additionally create the following users:

* user1
* user2
* user3

All users have the same password as their username

Testing
~~~~~~~

The unit and integration test suite is run by executing the following command::

    yarn test

If you are developing and wish to automatically re-run your test suite on filechanges run::

    yarn run watch-test