skolplattformen-backup/README.md

199 lines
8.6 KiB
Markdown
Raw Normal View History

2021-06-08 07:54:43 +00:00
Give us a ⭐ if you appreciate what we do!
2021-04-18 19:31:22 +00:00
# Öppna skolplattformen
2020-12-07 21:12:30 +00:00
2021-04-18 20:39:55 +00:00
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](LICENSE)
[![Patreon](https://img.shields.io/badge/dynamic/json?color=%23e85b46&label=Patreon&query=data.attributes.patron_count&suffix=%20patrons&url=https://www.patreon.com/api/campaigns/6649731)](https://www.patreon.com/oppnaskolplattformen)
![Vercel](https://therealsujitk-vercel-badge.vercel.app/?app=skolplattformen)
[![Translation status](https://hosted.weblate.org/widgets/skolplattformen/-/svg-badge.svg)](https://hosted.weblate.org/engage/skolplattformen/)
[![Build Status](https://app.bitrise.io/app/8e56bd02bc602da5/status.svg?token=h8gI2dB_jXLurj9EO_fXWw)](https://app.bitrise.io/app/8e56bd02bc602da5)
2020-12-07 21:12:30 +00:00
2021-06-08 07:54:43 +00:00
We are parents who got fed up with Skolplattformen, the City of Stockholm's school administration platform. \ We reverse-engineered the platform's API to create a simpler, faster, more consistent, and secure experience for parents and guardians.
P
2021-06-08 07:54:43 +00:00
If you're simply looking for information about the app, our website can be found at [https://skolplattformen.org/](https://skolplattformen.org/). \
Check out [the changelog](CHANGELOG.md) to see what new features are added, and a list of fixed bugs.
2020-12-07 21:12:30 +00:00
This main repository for the project contains the source code for both the [app](apps/skolplattformen-app) and its [website](https://skolplattformen.org/). \
2021-10-04 16:16:18 +00:00
The sources for each can be found under [apps](apps) and [libs](libs).
2021-06-08 07:54:43 +00:00
The respective README files there contain more detailed descriptions.
2021-04-02 08:23:05 +00:00
<img src="apps/website/assets/img/screenshots/screenshot_login.png" width="200"> <img src="apps/website/assets/img/screenshots/screenshot_children.png" width="200">
2021-04-02 08:23:05 +00:00
2021-04-18 19:31:22 +00:00
## Contents
2021-04-02 08:23:05 +00:00
2021-04-18 19:31:22 +00:00
* [Architecture](#architecture)
2021-10-04 06:42:38 +00:00
* [Apps](#apps)
* [skolplattformen](#skolplattformen)
2021-10-04 06:42:38 +00:00
* [website](#website)
* [Libs](#embedded-api)
2021-11-30 12:48:22 +00:00
* [api](#api)
2021-10-04 06:42:38 +00:00
* [api-skolplattformen](#api-skolplattformen)
2021-11-30 12:48:22 +00:00
* [api-hjarntorget](#api-hjarntorget)
2021-10-04 06:42:38 +00:00
* [curriculum](#curriculum)
* [hooks](#hooks)
* [Getting started with development](#getting-started-with-development)
* [iOS](#ios)
* [Android](#android)
* [Website](#website)
* [Tests](#tests)
2021-04-18 19:31:22 +00:00
* [Contributions](#contributions)
* [Money](#money)
* [Disclaimer](#disclaimer)
* [Contributors](#contributors)
* [License](#license)
2020-12-07 21:12:30 +00:00
2021-04-18 19:31:22 +00:00
## Architecture
2021-02-08 06:09:31 +00:00
2021-10-04 16:16:18 +00:00
The project consists of several apps and libraries inside [a NX](https://nx.dev/) monorepo.
2020-12-07 21:12:30 +00:00
2021-10-04 06:42:38 +00:00
### Apps
/apps/ contains the application projects. This is the main entry point for a runnable application.
#### skolplattformen
2021-10-04 06:42:38 +00:00
The central part of the project is the app itself. It is written in [TypeScript](https://www.typescriptlang.org/) using [React Native](https://reactnative.dev/) and [React Native Kitten](https://akveo.github.io/react-native-ui-kitten/).
Our main goal with the app is to make it as fast and easy to use as possible. \
2021-11-30 12:48:22 +00:00
2021-10-04 06:42:38 +00:00
We're starting small, with more features being added over time.
For more information, check out the [source code](apps/skolplattformen-app).
2021-10-04 06:42:38 +00:00
#### website
2021-04-14 09:47:44 +00:00
The code for the website at https://skolplattformen.org/. It's built using Next.js.
2021-04-14 09:47:44 +00:00
2021-10-04 16:16:18 +00:00
For more information, check out the [source code](apps/website).
2021-10-04 06:42:38 +00:00
### Libs
2021-04-14 09:47:44 +00:00
2021-10-04 06:42:38 +00:00
/libs/ contains the library projects. There are many different kinds of libraries, and each library defines its own external API so that boundaries between libraries remain clear.
2021-02-07 22:39:42 +00:00
2021-11-30 12:48:22 +00:00
#### api
The base for all api implementations
#### api-hjarntorget
The implementation for the school platform in Gothenburg called Hjärntorget
#### api-skolplattformen
2021-10-04 16:16:18 +00:00
2021-06-08 07:54:43 +00:00
By not having to worry about the complex nature of the official API, the app becomes light-weight. \
It also makes it easier for others to develop their own applications for the Skolplattformen API.
2021-02-08 06:09:31 +00:00
2021-06-08 07:54:43 +00:00
**Pro tip:** If you don't want the API to make requests to the back-end, you can turn on _fake mode_ to return static data instead. \
Do so by logging in using 12121212121212 or 1212121212 as your personal identity number.
2021-10-04 16:16:18 +00:00
Check out the documentation [here](libs/api-skolplattformen).
2021-10-04 06:42:38 +00:00
#### curriculum
2021-10-04 16:30:53 +00:00
Translations of curriculum codes (sv: ämneskoder på schemat) to clear text descriptions
2021-11-30 12:48:22 +00:00
2021-10-04 06:42:38 +00:00
#### hooks
2021-10-04 16:16:18 +00:00
To make it easier to use the the api in the app, we also created a set of React hooks.
Check out the documentation [here](libs/hooks).
2021-02-17 08:50:42 +00:00
## Getting started with Development
2021-02-17 08:50:42 +00:00
To clone and build the project, you first need to install [git](https://git-scm.com/), [node](https://nodejs.org/en/) and [yarn](https://classic.yarnpkg.com/lang/en/docs/install/).
2021-02-17 08:50:42 +00:00
2021-04-18 19:31:22 +00:00
Clone the repo with
2021-04-14 09:47:44 +00:00
```bash
2021-04-18 19:31:22 +00:00
$ git clone https://github.com/kolplattformen/skolplattformen.git
2021-02-17 08:50:42 +00:00
```
2020-12-07 21:12:30 +00:00
2021-11-30 12:48:22 +00:00
Install dependencies
```bash
2021-11-30 12:48:22 +00:00
cd skolplattformen && yarn
```
### iOS
If you wanna run the iOS app, you need to setup a couple of things first, we have a guide that will assist you in getting started with the iOS app. A Mac is required to build projects with native code for iOS so we do not have support for Linux / Windows.
* [Mac OS](/docs/ios_mac.md)
If you already setup everything, you just need to run the following command in the project root:
2021-11-30 12:48:22 +00:00
Start the iOS app
```
yarn run ios
```
### Android
If you wanna run the Android app, you need to setup a couple of things first, we have created three different guides depending on your operating system.
* [Mac OS](/docs/android_mac.md)
* [Windows](/docs/android_windows.md)
* [Linux](/docs/android_linux.md)
If you already setup everything, you just need to run the following command in the project root:
2021-11-30 12:48:22 +00:00
```
yarn run android
```
### Website
Documentation coming soon.
### Tests
2021-11-30 12:48:22 +00:00
Run all tests
```
yarn run test
```
Run a specific test
```
yarn run test:api-skolplattformen
```
## Contributions
2021-02-08 06:09:31 +00:00
2021-06-08 07:54:43 +00:00
We want this project to be a citizen movement. If you find something you think needs fixing, we encourage you to do so yourself, and test it out on your machine first. \
Once done, create a _pull request_ where you explain why we should incorporate your fix into the project. \
If you're new to GitHub, there's a number of excellent guides available, such as [this one on forking projects and making pull requests](https://guides.github.com/activities/forking/).
2021-04-14 09:47:44 +00:00
2021-06-08 07:54:43 +00:00
There are many ways to contribute to the project. \
If you don't know how to program and want help, you can [file an issue](https://github.com/kolplattformen/skolplattformen-app/issues/new) to let us know when something isn't working properly. \
2021-06-08 07:54:43 +00:00
We're super duper happy for both issues and pull requests, and we try to answer all of them as soon as humanly possible.
2021-04-14 09:47:44 +00:00
Another way to contribute is by helping translate Öppna skolplattformen [on Hosted Weblate](https://hosted.weblate.org/engage/skolplattformen-app/) into a new language, or to improve existing translations.
2021-06-08 07:54:43 +00:00
_Working together leverages available skills and experience in improving the project, ultimately creating the best possible experience_.
2020-12-07 21:12:30 +00:00
## Money
2021-02-08 06:09:31 +00:00
2021-06-08 07:54:43 +00:00
Even if we definitely stand by our claim that libre software doesn't mean gratis, we have now offered it free of charge on both the Apple App Store and on Google Play. With this different model, you can extend your appreciation to all our contributors. Send some köttbullar for the kids through voluntary donations on [https://patreon.com/oppnaskolplattformen](https://patreon.com/oppnaskolplattformen) ❤️.
2020-12-07 21:12:30 +00:00
## Disclaimer
2021-02-08 06:09:31 +00:00
2021-06-08 07:54:43 +00:00
This initiative was started by frustrated parents without any affiliation with the City of Stockholm. \
We just want to find and read newsletters with greater ease, and register sick-leave in a convenient manner.
2020-12-07 21:12:30 +00:00
2021-06-08 07:54:43 +00:00
If you're offended by this initiative, rest assured there is no reason to be — we come in peace.
2020-12-07 21:12:30 +00:00
2021-04-14 09:47:44 +00:00
## Contributors
2020-12-07 21:12:30 +00:00
- [Christian Landgren](https://github.com/irony)
- [Johan Öbrink](https://github.com/JohanObrink)
- [Erik Hellman](https://github.com/ErikHellman)
- [Rickard Natt och Dag](https://github.com/believer)
2021-03-30 11:42:29 +00:00
- [Viktor Sarström](https://github.com/viktorlarsson)
2021-04-02 08:17:58 +00:00
- [Andreas Eriksson](https://github.com/whyer)
2021-05-06 13:37:47 +00:00
- [Kajetan Kazimierczak](https://github.com/kajetan-kazimierczak)
- [Karin Nygårds (artwork)](https://github.com/grishund)
2021-11-30 12:48:22 +00:00
- [Jonathan Edenström](https://github.com/edenstrom)
- [Emil Hellman](https://github.com/archevel)
- You?
2020-12-07 21:12:30 +00:00
## License
2021-09-12 17:28:40 +00:00
Öppna skolplattformen is copyright 20202021 Not Free Beer AB.
2021-04-18 19:31:22 +00:00
2021-06-08 07:54:43 +00:00
Licensed under the [Apache License, Version 2.0](LICENSE) (the "License"); you may use Öppna skolplattformen in compliance with the License. A copy of the License is included with this repository.
2021-04-18 19:31:22 +00:00
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the [License](LICENSE) for the specific language governing permissions and limitations under the License.