Answer
Answer
is a modern Q&A community application β¨
To learn more about the philosophy and goals of the project, visit Answer.
βοΈ Prerequisites
pnpm is required by building the Answer project. To installing the pnpm tools with below commands:
corepack enable
corepack prepare pnpm@v7.12.2 --activate
With Node.js v16.17 or newer, you may install the latest version of pnpm by just specifying the tag:
corepack prepare pnpm@latest --activate
π¨ Development
clone the repo locally and run following command in your terminal:
$ git clone git@github.com:answerdev/answer.git answer
$ cd answer/ui
$ pnpm install
$ pnpm start
now, your browser should already open automatically, and autoload http://localhost:3000
.
you can also manually visit it.
π· Workflow
when cloning repo, and run pnpm install
to init dependencies. you can use project commands below:
pnpm start
run Answer web locally.
pnpm build
build Answer for production
pnpm lint
lint and fix the code style
π I18n(Multi-language)
If you need to add or edit a language entry, just go to the /i18n/en_US.yaml
file,
all front-end language entries are placed under the ui
field.
If you would like to help us with the i18n translation, please visit Answer@Crowdin
π‘ Project instructions
.
βββ cmd
βββ configs
βββ docs
βββ i18n
βββ en_US.yaml (basic language file)
βββ i18n.yaml (language list)
βββ internal
βββ ...
βββ ui (front-end project starts here)
βββ build (built results directory, usually without concern)
βββ public (html template for public)
βββ scripts (some scripting tools on front-end project)
βββ src (almost all front-end resources are here)
βββ assets (static resources)
βββ common (project information/data defined here)
βββ components (all components of the project)
βββ hooks (all hooks of the project)
βββ i18n (Initialize the front-end i18n)
βββ pages (all pages of the project)
βββ router (Project routing definition)
βββ services (all data api of the project)
βββ stores (all data stores of the project)
βββ utils (all utils of the project)
π€ Contributing
Fix Bug
If you find a bug, please don't hesitate to submit an issue to us.
If you can fix it, please include a note with your issue submission.
If it is a bug definitely, you can submit your PR after we confirm it, which will ensure you don't do anything useless.
In our development, some codes are not logical we know. If you find it, please don't hesitate to submit PR to us.
In the same way, some function has no comment. We would appreciate it if you could help us supplement it.
Translation
All our translations are placed in the i18n directory.
- If you find that the corresponding key in the language you are using does not have a translation, you can submit your translation.
- If you want to submit a new language translation, please add your language to the
i18n.yaml
file.
Features or Plugin
- We developed the features for the plan based on the roadmap. If you are suggestions for new functions, please confirm whether they have been planned.
- Plugins will be available in the future, so stay tuned.
π±Environment Support
 Edge |
 Firefox |
 Chrome |
 Safari |
last 2 versions |
last 2 versions |
last 2 versions |
last 2 versions |
β Built with