Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/softwaremill/bootzooka
Simple project to quickly start developing a Scala-based microservice or web application, without the need to write login, user registration etc.
https://github.com/softwaremill/bootzooka
angular scala skeleton
Last synced: 3 days ago
JSON representation
Simple project to quickly start developing a Scala-based microservice or web application, without the need to write login, user registration etc.
- Host: GitHub
- URL: https://github.com/softwaremill/bootzooka
- Owner: softwaremill
- License: apache-2.0
- Created: 2012-10-19T07:54:05.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2024-12-13T00:02:12.000Z (13 days ago)
- Last Synced: 2024-12-15T15:00:26.206Z (10 days ago)
- Topics: angular, scala, skeleton
- Language: Scala
- Homepage: https://softwaremill.github.io/bootzooka/
- Size: 9.16 MB
- Stars: 757
- Watchers: 61
- Forks: 151
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
![Bootzooka](https://github.com/softwaremill/bootzooka/raw/master/banner.png)
[See the docs](http://softwaremill.github.io/bootzooka/) for more information.
[![ CI ](https://github.com/softwaremill/bootzooka/workflows/Bootzooka%20CI/badge.svg)](https://github.com/softwaremill/bootzooka/actions?query=workflow%3A%22Bootzooka+CI%22)
## Quick start
### Backend: PostgreSQL & API
In order to run Bootzooka, you'll need a running instance of PostgreSQL with a `bootzooka` database. You can spin
up one easily using docker:```sh
# use "bootzooka" as a password
docker run --name bootzooka-postgres -p 5432:5432 -e POSTGRES_PASSWORD=bootzooka -e POSTGRES_DB=bootzooka -d postgres
```Then, you can start the backend:
```sh
export SQL_PASSWORD=bootzooka
./backend-start.sh
```### Frontend: Yarn & webapp
You will need the [yarn package manager](https://yarnpkg.com) to run the UI. Install it using your package manager or:
```sh
curl -o- -L https://yarnpkg.com/install.sh | bash
```Then, you can start the frontend:
```sh
./frontend-start.sh
```And open `http://localhost:3000`.
## Commercial Support
We offer commercial support for Bootzooka and related technologies, as well as development services. [Contact us](https://softwaremill.com) to learn more about our offer!
## Copyright
Copyright (C) 2013-2024 SoftwareMill [https://softwaremill.com](https://softwaremill.com).