1
0
Fork 0
mirror of https://github.com/codex-team/codex.docs.git synced 2025-07-18 20:59:42 +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 073772c047
Page creation basics (#7)
* Page cration basics

* remove unused code

* add client-side Header validation

* remove static method

* rm await duplication
2018-10-04 22:08:21 +03:00
bin Main elements created (#4) 2018-09-18 13:10:44 +03:00
public/dist Page creation basics (#7) 2018-10-04 22:08:21 +03:00
src Page creation basics (#7) 2018-10-04 22:08:21 +03:00
test Page creation basics (#7) 2018-10-04 22:08:21 +03:00
.editorconfig Page model (#1) 2018-08-17 13:58:44 +03:00
.eslintignore Frontent build system is ready (#3) 2018-09-07 19:24:09 +03:00
.eslintrc Page model (#1) 2018-08-17 13:58:44 +03:00
.gitignore Frontent build system is ready (#3) 2018-09-07 19:24:09 +03:00
.nvmrc Add nvmrc (#2) 2018-09-03 23:05:50 +03:00
package-lock.json Code splitting now works through awaited import (#6) 2018-10-03 12:26:41 +03:00
package.json Page creation basics (#7) 2018-10-04 22:08:21 +03:00
README.md Add nvmrc (#2) 2018-09-03 23:05:50 +03:00
webpack.config.js Code splitting now works through awaited import (#6) 2018-10-03 12:26:41 +03:00
yarn.lock Page creation basics (#7) 2018-10-04 22:08:21 +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