Metadata-Version: 2.1
Name: create-server-app
Version: 1.0.6.8
Summary: A CLI tool to create a server app project.
Home-page: https://github.com/FloresTristan/create-server-app
Author: Michael
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
License-File: LICENSE
Requires-Dist: flask
Requires-Dist: pytest
Requires-Dist: pytest-cov
Requires-Dist: pymongo

# Create Server App

This project is a template for creating a server application using modern web technologies. It provides a basic structure and setup to help you get started quickly.

## Features

- Easy setup and configuration
- Template routes using flask
- Environment-based configuration

## Getting Started

### Prerequisites

- Python v3.8

### Installation

1. Install using pip:
    ```sh
    pip install create-server-app
    ```
2. Create the server-app:
    ```sh
    create-server-app <name of your project>
    ```
    then done

### Running the Server

To start the server in development mode:
```sh
python app.py
```
or
```sh
py app.py
```

The server will be running at `http://localhost:3000`.

## License

This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.
