51 lines
1.1 KiB
Markdown
51 lines
1.1 KiB
Markdown
|
# hsrw_campus_website
|
||
|
|
||
|
The app landing page for the HSRW Campus App.
|
||
|
|
||
|

|
||
|

|
||
|
|
||
|
## Requirements
|
||
|
|
||
|
Install jaspr:
|
||
|
|
||
|
```bash
|
||
|
dart pub global activate jaspr_cli
|
||
|
```
|
||
|
|
||
|
Install `tailwindcss`:
|
||
|
|
||
|
- macOS
|
||
|
|
||
|
```bash
|
||
|
brew install tailwindcss
|
||
|
```
|
||
|
|
||
|
- Windows
|
||
|
|
||
|
```powershell
|
||
|
winget install --id=TailwindLabs.TailwindCSS -e
|
||
|
```
|
||
|
|
||
|
- Linux (manual installation)
|
||
|
|
||
|
```bash
|
||
|
curl -sLO https://github.com/tailwindlabs/tailwindcss/releases/latest/download/tailwindcss-<your-platform>
|
||
|
chmod +x tailwindcss-<your-platform>
|
||
|
# e.g. /usr/local/bin on unix based systems (linux, macos)
|
||
|
mv tailwindcss-<your-platform> /usr/local/bin/tailwindcss
|
||
|
```
|
||
|
|
||
|
## Running the project
|
||
|
|
||
|
Run your project using `jaspr serve`.
|
||
|
|
||
|
The development server will be available on `http://localhost:8080`.
|
||
|
|
||
|
## Building the project
|
||
|
|
||
|
Currently there is a build error and the `style.css` file is not generated correctly. This will be fixed in the future, please use the `jaspr serve` command to run the project.
|
||
|
|
||
|
Build your project using `jaspr build`.
|
||
|
|
||
|
The output will be located inside the `build/jaspr/` directory.
|