1
0
Fork 0
mirror of https://github.com/codex-team/codex.docs.git synced 2025-08-09 23:45:25 +02:00
Application de documentation gratuite, basé sur l'écosystème Editor.js offrant toutes les opportunités modernes pour travailler avec du contenu. https://codex.so
Find a file
Peter Savchenko f917f5439e
update db
2018-09-07 18:22:53 +03:00
.db update db 2018-09-07 18:22:53 +03:00
bin move code to /src 2018-09-07 18:22:24 +03:00
public/dist move code to /src 2018-09-07 18:22:24 +03:00
src move code to /src 2018-09-07 18:22:24 +03:00
test move code to /src 2018-09-07 18:22:24 +03:00
.editorconfig Page model (#1) 2018-08-17 13:58:44 +03:00
.eslintignore Set up linter for frontend part 2018-09-03 23:32:10 +03:00
.eslintrc Page model (#1) 2018-08-17 13:58:44 +03:00
.gitignore Set up linter for frontend part 2018-09-03 23:32:10 +03:00
.nvmrc Add nvmrc (#2) 2018-09-03 23:05:50 +03:00
package.json move code to /src 2018-09-07 18:22:24 +03:00
README.md Add nvmrc (#2) 2018-09-03 23:05:50 +03:00
webpack.config.js move code to /src 2018-09-07 18:22:24 +03:00
yarn.lock Frontent build system is ready 2018-09-03 21:10:03 +03:00

Set up the environment

Install node version manager and required version of node js

$ chmod u+x ./bin/nvm.sh && ./bin/nvm.sh
$ nvm install

For windows use nvm for windows

Install Yarn package manager

$ brew install yarn --without-node

Use --without-node flag because nvm version of Node is used

Or download it directly from the website

Install npm packages

$ yarn install --frozen-lockfile

Available scripts

Start the server

$ yarn start

Run ESLint with --fix option

$ yarn lint

Run tests

$ yarn test