/LINK

Link IN Knowledge

Primary LanguagePythonMIT LicenseMIT

LINK

Link IN Knowledge

Documentation

Documentation for the Components, DB, and API is available on the Gitbook

Getting Started

Start Front Server

  • Environment: Node.js 10.15 (npm)

    $ cd front
    $ npm install
    $ npm run dev
    

Start Django Back Server

  • Environment: Python 3.7 (virtualenv)

    $ cd back_django
    $ virtualenv <env name>
    $ source <env name>/Scripts/activate
    $ pip install -r requirement.txt
    $ python manage.py migrate
    $ python manage.py runserver
    

Built with

Directory

LINK
├── back
├── back_django     // django api test server
├── front
│   ├── components  // React Components
│   ├── pages       // The root of a Next.js application
│   ├── reducers
│   └── sagas
├── LICENSE
└── README.md

Git Commit Message Style

We follows https://udacity.github.io/git-styleguide/

feat: a new feature
fix: a bug fix
docs: changes to documentation
style: formatting, missing semi colons, etc; no code change
refactor: refactoring production code
test: adding tests, refactoring test; no production code change
chore: updating build tasks, package manager configs