Skip to content
This repository has been archived by the owner on Jan 29, 2023. It is now read-only.

christophehurpeaudeprecated/ibex-translate

Repository files navigation

ibex-translate

import Ibex from 'ibex';
import config from 'ibex-config';
import language from 'ibex-language';
import translate from 'ibex-translate';

(async function main() {
    const app = new Ibex();
    await config('/js/config')(app);
    await language(app);
    await translate('locales')(app);
    await app.run();
})();