Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/seluj78/ski-resort-tycoon
My attempt at making a ski resort tycoon game
https://github.com/seluj78/ski-resort-tycoon
Last synced: 4 days ago
JSON representation
My attempt at making a ski resort tycoon game
- Host: GitHub
- URL: https://github.com/seluj78/ski-resort-tycoon
- Owner: Seluj78
- License: gpl-2.0
- Created: 2024-01-23T14:08:46.000Z (10 months ago)
- Default Branch: develop
- Last Pushed: 2024-10-21T16:56:34.000Z (24 days ago)
- Last Synced: 2024-10-22T06:10:01.797Z (23 days ago)
- Language: Shell
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# [Ski Resort Tycoon]
* [What is it](#what-is-it)
* [Installation](#installation)
* [Locally](#locally)
* [Create a virtual environment](#create-a-virtual-environment)
* [Activate it](#activate-it)
* [Install the requirements](#install-the-requirements)
* [Edit the env file with the correct parametters](#edit-the-env-file-with-the-correct-parametters)
* [Run the app](#run-the-app)
* [Deployment on prod or preprod](#deployment-on-prod-or-preprod)
* [On PREPROD](#on-preprod)
* [On PROD](#on-prod)
* [Debugging](#debugging)
* [Repository rules](#repository-rules)
* [Code owner](#code-owner)## What is it
My attempt at creating a 2D, maybe 3D ski resort tycoon game, using the [Arcade](https://arcade.academy/) library.
## Installation
### Locally
#### Create a virtual environment
```shell
python3.11 -m venv venv
```#### Activate it
```shell
source venv/bin/activate
```#### Install the requirements
```shell
pip install -r requirements.txt
``````
pre-commit install
pre-commit install --hook-type commit-msg
```