-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed minore issues in the application and added further documentatio…
…n on frontend development
- Loading branch information
1 parent
5c4bd8e
commit d8025f6
Showing
17 changed files
with
257 additions
and
276 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,72 @@ | ||
Frontend Development | ||
==================== | ||
|
||
Getting Started | ||
--------------- | ||
.. hint:: This page generally describes **two ways** of achieving the same thing: Using VSCode and using the shell. For | ||
general development, we **highly recommend** using the VSCode integration unless it does not work for you or a | ||
shell is required. Simply set the tab to the version you will work with, they a synchronized through the magic of | ||
technology. | ||
|
||
|
||
|
||
.. rubric:: Getting Started | ||
|
||
To get started, please read and follow the instructions of the :ref:`DevEnvPage` section. | ||
|
||
Code Testing | ||
------------ | ||
Open a shell within the ``frontend`` directory and run | ||
|
||
.. code:: bash | ||
.. tab-set:: | ||
|
||
.. tab-item:: VSCode | ||
|
||
.. _launchfrontend: | ||
|
||
.. dropdown:: :octicon:`rocket` Launching the Frontend | ||
|
||
.. todo:: TODO | ||
|
||
.. dropdown:: :octicon:`beaker` Code Testing | ||
|
||
.. todo:: TODO | ||
|
||
.. dropdown:: :fab:`hammer` Building the Static Frontend | ||
|
||
.. attention:: This step can only be performed via shell and is only really useful for deployment. If | ||
you simply want to launch the frontend for debugging, have a look at | ||
:ref:`Launching the Frontend <launchfrontend>`. | ||
|
||
yarn test | ||
.. tab-item:: Shell | ||
|
||
.. dropdown:: :octicon:`rocket` Launching the Frontend | ||
|
||
Open a shell within the ``frontend`` directory and run | ||
|
||
.. code:: bash | ||
yarn dev | ||
.. dropdown:: :octicon:`beaker` Code Testing | ||
|
||
Open a shell within the ``frontend`` directory and run | ||
|
||
.. code:: bash | ||
yarn test | ||
.. dropdown:: :fab:`hammer` Building the Static Frontend | ||
|
||
Open a shell within the ``frontend`` directory and either run | ||
|
||
.. code:: bash | ||
yarn build-light | ||
.. rubric:: Linting | ||
|
||
.. note:: We don't currently have any linters | ||
|
||
Linting | ||
------- | ||
|
||
.. todo:: We don't currently have any linters | ||
|
||
FAQ | ||
--- | ||
.. rubric:: Frequently Asked Questions | ||
|
||
Yay, no questions yet. | ||
No questions yet :material-regular:`mood;1.5em;sd-text-success`. |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,7 @@ | ||
# TIRA Vuetify Frontend | ||
# TIRA Frontend | ||
|
||
Start with `yarn dev`. | ||
To get started, please read our developer documentation on... | ||
- [... setting up the development environment](https://tira-io.github.io/tira/nightly/development/devenvironment.html) | ||
- [... developing the frontend](https://tira-io.github.io/tira/nightly/development/frontend/index.html) | ||
|
||
Go to [http://127.0.0.1:3000/#/tasks](http://127.0.0.1:3000/#/tasks) for plain and to [http://127.0.0.1:3000/index-discourse.html#/tasks](http://127.0.0.1:3000/index-discourse.html#/tasks) for discourse adjusted development. | ||
|
||
## Project setup | ||
|
||
``` | ||
# yarn | ||
yarn | ||
``` | ||
|
||
### Compiles and hot-reloads for development | ||
|
||
``` | ||
# yarn | ||
yarn dev | ||
``` | ||
|
||
### Compiles and minifies for production | ||
|
||
``` | ||
# yarn | ||
yarn build | ||
``` | ||
|
||
### Customize configuration | ||
|
||
See [Configuration Reference](https://vitejs.dev/config/). | ||
the latter link contains all you need to know to navigate the development lifecycle. |
Oops, something went wrong.