51 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

2024-10-13 22:27:33 +02:00
# hsrw_campus_website
2025-02-02 11:54:40 +01:00
The app landing page for the Campus Mate Rhein-Waal App.
2024-10-13 22:27:33 +02:00
![App Screenshot 1](./screenshot/one.png)
![App Screenshot 2](./screenshot/two.png)
## 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.