Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
reinstate previous readme
  • Loading branch information
JaeGif authored Dec 19, 2024
1 parent 770d4d7 commit f2a891a
Showing 1 changed file with 140 additions and 38 deletions.
178 changes: 140 additions & 38 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,50 +1,152 @@
# React + TypeScript + Vite
# OpenTwin
![](https://github.com/codeforpdx/OpenTwin/workflows/OpenTwin%20tests/badge.svg)
[![License](https://img.shields.io/github/license/codeforpdx/OpenTwin)](https://github.com/codeforpdx/OpenTwin/blob/Master/LICENSE)
[![Discord](https://img.shields.io/discord/1068260532806766733)](https://discord.gg/Ts923xaUYV)
[![Pull Requests](https://img.shields.io/github/issues-pr/codeforpdx/OpenTwin)](https://github.com/codeforpdx/OpenTwin/pulls)
[![Issues](https://img.shields.io/github/issues/codeforpdx/OpenTwin)](https://github.com/codeforpdx/OpenTwin/issues)
[![Commits](https://img.shields.io/github/commit-activity/m/codeforpdx/OpenTwin)](https://github.com/codeforpdx/OpenTwin/commits/Master)
[![Build status](https://github.com/codeforpdx/OpenTwin/actions/workflows/ci.yml/badge.svg)](https://github.com/codeforpdx/OpenTwin/actions?query=workflow%3ABuild)
[![Contributors](https://img.shields.io/github/contributors/codeforpdx/OpenTwin)](https://github.com/codeforpdx/OpenTwin/graphs/contributors)
![Latest Commit](https://img.shields.io/github/last-commit/codeforpdx/OpenTwin/Development)

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
This readme is currently a work in progress [Learn more in the wiki](https://github.com/codeforpdx/OpenTwinPDX/wiki).

Currently, two official plugins are available:
Please read our [code of conduct](http://www.codeforpdx.org/about/conduct).

- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
If you're interested in learning more about our project and getting involved, please join us at one of our [meetup events!](https://www.meetup.com/Code-for-PDX/) You can also join our [Discord channel](https://discord.com/channels/1068260532806766733/1199864548765737020)!

## Expanding the ESLint configuration
## Table of Contents
- [Tech Overview](#tech-overview)
- [Installation](#installation)
- [Running Components](#running-the-docker-stack)
- [Testing](#testing)
- [Contributing](#contributing)
- [Technical Documentation](#technical-documentation)
- [License](#license)

If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
## Tech Overview
(Prospective)
- Geospatial Databases: Consider PostGIS or SpatialSQL(a spatial database extender for PostgreSQL) for managing geospatial data efficiently.
- Mapping and Visualization: Use Kepler.gl, Leaflet, or OpenLayers for interactive web mapping.
- Database: Choose databases like PostgreSQL or MySQL for structured data and
- TimescaleDB for time-series data storage.
- Big Data: For handling large volumes of data, consider Apache Hadoop and Apache HBase.
- Context Broker: [FiWare (possible)](https://github.com/telefonicaid/fiware-orion)

- Configure the top-level `parserOptions` property like this:
## Installation

You can get your dev environment up and running with installing only Docker and docker-compose. The npm and backend dev servers run in docker containers, synced with source code directories so that code changes propagate on the local servers right away. If you have any trouble, don't hesitate to ask on our [Discord channel](https://discord.com/channels/1068260532806766733/1199864548765737020)!

1. **[Fork](https://help.github.com/articles/fork-a-repo/#fork-an-example-repository)** the repo to create a copy for your own github account,
and **[clone](https://help.github.com/articles/fork-a-repo/#step-2-create-a-local-clone-of-your-fork)** your own copy. (Read [CONTRIBUTING.md](CONTRIBUTING.md) for important info about syncing code your on github)


2. Install docker

* **Mac**

- Follow installation instructions in: [Getting Started -- Docker on Mac OS X](https://medium.com/allenhwkim/getting-started-docker-on-mac-os-x-72c64670464a)

(click on Get Docker for Mac [Stable])

* **Linux**

- First, follow: [Docker Installation](https://docs.docker.com/install/linux/docker-ce/ubuntu/#install-using-the-repository)

- Configure your user to run docker without sudo: https://docs.docker.com/install/linux/linux-postinstall/

- Install [docker-compose](https://docs.docker.com/compose/install/)

* **Windows**
- Windows (as always) is a bit more challenging. Docker CE on Windows requires either WSL or Hyper-V support.
Please follow [Docker's documentation to install Docker on Windows](https://docs.docker.com/docker-for-windows/install/).
- **If you have Hyper-V**:
- Install GNU Make for Windows using either [Chocolatey](https://chocolatey.org/) or by downloading the executable
[from sourceforge](http://gnuwin32.sourceforge.net/packages/make.htm), running the installer, and then putting the
binary on your [Path Environment variable](https://helpdeskgeek.com/windows-10/add-windows-path-environment-variable/).
- ##### Important Windows Note
if your git config changes [Linux-style line endings into windows-style line endings](http://www.cs.toronto.edu/~krueger/csc209h/tut/line-endings.html)
using the `core.autocrlf` config flag, you'll need to disable that in order for the docker builds to work
correctly. You can disable this setting for just the `recordexpungPDX` repo by running `git config --local core.autocrlf false`
from the root directory of this repo.

## Running the docker stack

In the project's root directory, run `make new`. This pulls the dev-tagged "opentwin" image and launches the containers using docker-compose. Start and stop the running stack with `make up` and `make down`.

After this target completes, you can navigate to [http://localhost:3000](http://localhost:3000) in the browser and connect to the React dev server with full hot-module reloading. This may take a minute or two to come up before it is available while it installs node modules. Check the service with `make frontend_logs`.

In the course of backend development, one may not need to be running the React/HMR dev server. To build the frontend static files, and use Flask to serve them, run the following command:

```js
export default tseslint.config({
languageOptions: {
// other options...
parserOptions: {
project: ['./tsconfig.node.json', './tsconfig.app.json'],
tsconfigRootDir: import.meta.dirname,
},
},
})
```
$ make frontend_down frontend_build
```

Then navigate to [http://localhost:5000](http://localhost:5000) to access the backend service directly. This is configured to serve the static files. `make up` will start the HMR dev server again at 3000 if you stopped it.

- Replace `tseslint.configs.recommended` to `tseslint.configs.recommendedTypeChecked` or `tseslint.configs.strictTypeChecked`
- Optionally add `...tseslint.configs.stylisticTypeChecked`
- Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and update the config:
Whenever a dependency is added to the backend, someone needs to rebuild the dev-tagged image and push or folks will get errors when trying to run the stack. To do so, rebuild the image, and reload the backend with:

```
$ make backend_build backend_reload
```

```js
// eslint.config.js
import react from 'eslint-plugin-react'
If it works, push with:

export default tseslint.config({
// Set the react version
settings: { react: { version: '18.3' } },
plugins: {
// Add the react plugin
react,
},
rules: {
// other rules...
// Enable its recommended rules
...react.configs.recommended.rules,
...react.configs['jsx-runtime'].rules,
},
})
```
$ make push
```

More details in [DevOps README](src/ops/README.md).

For more project documentation on Docker, some troubleshooting, and some basic commands, see:
[doc/docker.md](https://github.com/codeforpdx/recordexpungPDX/blob/master/doc/docker.md)

##### Cleaning

While in the directory of your local repo, run:

```
$ make clean
```
in order to remove build artifacts.

To completely remove containers, volumes, and compose networks, run:

```
$ make clobber
```

## DevOps

See [DevOps README](src/ops/README.md).

## Testing

Currently using [pytest](https://docs.pytest.org) for testing the backend.
Run all backend tests by running the following command in the project root directory:

```
$ make backend_test
```

This runs a `pytest` command to execute all the unit tests inside the backend docker container. All of these tests should pass if you have correctly set up the backend dev environment.

To run a subset of test cases without first shelling into the docker container, you can use a docker-compose `exec` command, which specifies a container by service name and a runnable command in the container in a single step, e.g.:

```
$ docker-compose exec expungeservice pipenv run pytest tests/[subdir]
```

To specify and run a subset of the test cases.

## Contributing

Please see [CONTRIBUTING.md](CONTRIBUTING.md)

## Technical Documentation

- Project technical design: [Wiki](https://github.com/codeforpdx/OpenTwinPDX/wiki))

## License

Please see [License](LICENSE.md)

0 comments on commit f2a891a

Please sign in to comment.