Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tomasboda/agent-lang-web
Web interface for the AgentLang programming language
https://github.com/tomasboda/agent-lang-web
agent-based-modeling nextjs
Last synced: 2 days ago
JSON representation
Web interface for the AgentLang programming language
- Host: GitHub
- URL: https://github.com/tomasboda/agent-lang-web
- Owner: TomasBoda
- License: mit
- Created: 2023-08-01T19:46:05.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-06T08:27:33.000Z (9 months ago)
- Last Synced: 2024-05-06T09:38:31.326Z (9 months ago)
- Topics: agent-based-modeling, nextjs
- Language: TypeScript
- Homepage: https://agent-lang-web.vercel.app
- Size: 3.27 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
![]()
![Version Badge](https://img.shields.io/badge/version-1.0.0-blue?style=flat)
![Contributors Badge](https://img.shields.io/badge/contributors-1-green?style=flat)
![License Badge](https://img.shields.io/badge/license-MIT-red?style=flat)## About
Web interface with code sandbox for the **AgentLang** programming language written in [TypeScript](https://www.typescriptlang.org/) using the [Next.js](https://nextjs.org/) framework.## Running Locally
If you wish to run the project locally, clone the repository to your local machine, install all necessary packages and start the application.
```bash
# clone the repository
git clone https://github.com/TomasBoda/agent-lang-web.git
# checkout the project
cd agent-lang-web
# install necessary packages
npm install
# run the application
npm run dev
```## Running Using Docker
If you wish to run the project using Docker, build the Docker image and run it using the following commands:
```bash
# clone the repository
git clone https://github.com/TomasBoda/agent-lang-web.git
# checkout the project
cd agent-lang-web
# build the image
docker build -it agent-lang-web-image .
# run the image
docker run -p 3000:3000 agent-lang-web-image
```
The last command will forward the port `3000` to your local machine, so your app is available in the browser on the address `http://localhost:3000`.## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.## License
[MIT](/LICENSE.md)Made by [Tomas Boda](https://github.com/TomasBoda)