https://github.com/oleg-darkdev/mks-14_app
Educational project about experiments realized on the international space station 🛰️
https://github.com/oleg-darkdev/mks-14_app
44games astronauts astronomy boardgame cosmos education educational-game educational-project educational-software gamification gamification-learning gamified-learning history iss planet science science-research sveltejs sveltekit
Last synced: 3 months ago
JSON representation
Educational project about experiments realized on the international space station 🛰️
- Host: GitHub
- URL: https://github.com/oleg-darkdev/mks-14_app
- Owner: oleg-darkdev
- Created: 2023-03-25T23:43:28.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-04-19T11:46:41.000Z (over 2 years ago)
- Last Synced: 2025-03-22T10:32:31.831Z (over 1 year ago)
- Topics: 44games, astronauts, astronomy, boardgame, cosmos, education, educational-game, educational-project, educational-software, gamification, gamification-learning, gamified-learning, history, iss, planet, science, science-research, sveltejs, sveltekit
- Language: JavaScript
- Homepage: https://mks-14.vercel.app
- Size: 59.4 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
The starter is prepared for deployment to [Vercel](https://vercel.com/).
Configured to use [Typescipt](https://www.typescriptlang.org/).
## Stack
- [SvelteJS](https://svelte.dev/)
- [SvelteKIT](https://kit.svelte.dev/)
- [TailwindCSS](https://tailwindcss.com/)
- [FSD architecture](https://feature-sliced.design/ru/docs/get-started)
## Commands
```bash
# clone repository and install packages
git clone https://github.com/oleg-darkdev/;
```
```bash
# start the server
cd backend;
yarn;
yarn dev
```
```bash
# start the front-end & open the app in a new browser tab
cd frontend;
yarn;
yarn dev --open
```
```bash
# create a production version of front-end app :
cd frontend;
yarn build;
```
```bash
# create a production version of back-end app :
cd backend;
yarn build;
```