Skip to content

Latest commit

 

History

History
90 lines (59 loc) · 2.57 KB

README.md

File metadata and controls

90 lines (59 loc) · 2.57 KB

Archifiltre

Github Master CI Status License: Apache-2.0 Npm version codecov


Archifiltre allows you to visualize and improve your file trees. Learn more about it here.

Presentation

Launch the app

First install the dependencies

yarn

Then copy the example env file

cp .env.example .env

(Optionnal) Install the React Developper Tools in your chrome browser. Then, find the extension install path and add it to the .env file. More info here. You must provide the absolute path.

You should use autoreloading when developping, using

yarn dev

and in another terminal, to launch the electron app:

yarn dev-app

and then, reload your electron app with the refresh command (CMD + R on OS X)

You can make the app automatically load a specific folder by doing:

yarn dev --autoload /absolute/or/relative/path/to/folder

Building/releasing the app

First, prepare the build in production mode

yarn prepare-prod

Then you can package the app for the right platform:

yarn win32
yarn win64
yarn mac
yarn linux
yarn win32-msi
yarn win64-msi

Or you can prepare the build and build for all four platforms with one command:

yarn build-prod

Once built, production binaries are found in the dist folder, each in their corresponding platform's subfolder.

Contributing

To contribute, see more here

To know more about the project architecture, go here

Import script

Archifiltre provides you with an export script that you can run directly on your file server. To know more about it, go here