1
0
Fork 0
mirror of https://github.com/thomiceli/opengist.git synced 2025-01-24 23:00:35 +00:00
opengist/docs/contributing/run-development.md

39 lines
848 B
Markdown
Raw Normal View History

2024-02-19 01:58:50 +01:00
# Run Opengist in development mode
## With Docker
Assuming you have [Make](https://linux.die.net/man/1/make) installed,
```shell
# Clone the repository
git clone git@github.com:thomiceli/opengist.git
cd opengist
# Build the development image
make build_dev_docker
```
Now you can run the development image with the following command:
```shell
make run_dev_docker
```
Opengist is now running on port 6157, you can browse http://localhost:6157
## As a binary
Requirements:
* [Git](https://git-scm.com/downloads) (2.28+)
2024-05-05 00:38:06 +02:00
* [Go](https://go.dev/doc/install) (1.22+)
2024-02-19 01:58:50 +01:00
* [Node.js](https://nodejs.org/en/download/) (16+)
* [Make](https://linux.die.net/man/1/make) (optional, but easier)
```shell
git clone git@github.com:thomiceli/opengist.git
cd opengist
make watch
```
Opengist is now running on port 6157, you can browse http://localhost:6157