|
||
---|---|---|
bbcode | ||
chat | ||
components | ||
cordova | ||
electron | ||
fchat | ||
less | ||
site | ||
tslint | ||
.gitignore | ||
LICENSE | ||
export-loader.js | ||
package.json | ||
readme.md | ||
sfc.d.ts | ||
tslint.json | ||
yarn.lock |
readme.md
F-List Exported
This repository contains the open source parts of F-list and F-Chat 3.0. All necessary files to build F-Chat 3.0 as an Electron, Cordova or web application are included.
Setting up a Dev Environment
- Clone the repo
- Install Yarn
- Change into the cloned directory and run
yarn install
. If you only want to make a custom theme, you do not need to do this! - IntelliJ IDEA is recommended for development.
Building for Electron
- To build native Node assets, you will need to install Python 2.7 and the Visual C++ 2015 Build tools. More information can be found in the node-gyp docs.
- Change into the
electron
directory. - Run
yarn install
and thenyarn build
/yarn watch
to build assets. They are placed into theapp
directory. - You will probably need to rebuild the native dependencies (
spellchecker
andkeytar
) for electron. To do so, runnpm rebuild {NAME} --target={ELECTRON_VERSION} --arch=x64 --dist-url=https://atom.io/download/electron
. See the electron documentation for more info. - Run
yarn start
to start the app in debug mode. UseCtrl+Shift+I
to open the Chromium debugger.
Packaging
See https://electron.atom.io/docs/tutorial/application-distribution/
- Run
yarn build:dist
to create a minified production build. - Run
./node_modules/.bin/electron-builder
with options specifying the platform you want to build for.
Building for Cordova
- Change into the
cordova
directory. - Install Cordova using
yarn global add cordova
. - Run
yarn install
. - Create a
www
directory inside thecordova
directory and then runcordova prepare
to install dependencies. - Run
cordova requirements
to see whether all requirements for building are installed. - Run
yarn build
/yarn watch
to build assets. They are placed into thewww
directory. - Run
cordova build
. For Android, the generated APK is now inplatforms/android/build/outputs/apk
.
Building a custom theme
See the wiki for instructions on how to create a custom theme.
- Change into the
less
directory. - Run
yarn install
. - Run
yarn build themes/chat/{name}.less {name}.css
.
Dependencies
Note: Adding and upgrading dependencies should only be done with prior consideration and subsequent testing.
That's why yarn.lock
exists and is version controlled.
To upgrade NPM dependencies, run yarn upgrade
locally. Run yarn outdated
to see pending upgrades.