gofn
Function process via docker provider (serverless minimalist)
File Explorer
Download Latest Version (.zip)- logo.png
- app.py
- Dockerfile
- main.go
- README.md
- Dockerfile
- main.py
- main.go
- app.py
- Dockerfile
- main.go
- README.md
- Dockerfile
- main.go
- app.py
- Dockerfile
- main.go
- README.md
- Dockerfile
- main.go
- Dockerfile
- main.go
- config.json
- config.json
- fake_id_rsa
- fake_id_rsa.pub
- amazonec2.go
- amazonec2_test.go
- config.json
- config.json
- fake_id_rsa
- fake_id_rsa.pub
- digitalocean.go
- digitalocean_test.go
- config.json
- config.json
- fake_id_rsa
- fake_id_rsa.pub
- google.go
- google_test.go
- tcp.go
- tcp_test.go
- iaas.go
- Dockerfile
- main.py
- docker.go
- docker_integration_test.go
- docker_integration_unix_test.go
- docker_integration_windows_test.go
- docker_test.go
- docker_unix.go
- docker_unix_test.go
- docker_windows.go
- docker_windows_test.go
- .codeclimate.yml
- .gitignore
- .travis.yml
- gofn.go
- gofn_test.go
- LICENSE
- Makefile
- README.md
- test.sh
# Installation Guide
1. Get the code
git clone https://github.com/gofn/gofn
Downloads the entire project code from GitHub to your computer.
cd gofn
Moves into the project folder you just downloaded.
2. Docker
Easy RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
β οΈ This is a large repository, so this method may point to an internal sub-package rather than the actual core product. Check the full README as well.
docker build -f provision/testing_data/Dockerfile -t gofn .
Builds a runnable image based on the Dockerfile.
docker run -p 8080:80 gofn
Runs the built image as an actual container.
Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.
3. Make
MediumPrerequisites
- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make
Compiles the code based on the generated build configuration to produce an executable.
If it finishes without errors, it worked. Try running the generated executable directly.
// repository documentation
Was this content helpful?
(0 ratings)
