- Introduction
- How to Get Started
- Where To Ask Questions
- Links and Resources
- Get in Touch
- Creating a Docker Container Image
- Built with
- APIs or Libraries used
Open Source Community Kampala is an organisation for open-source lovers, enthusiasts, advocates, and experts within and across Uganda but centered in Kampala with the sole aim of increasing the rate of credible contributions by Ugandan software developers, designers, writers, and everyone involved in the sphere of technology to open source projects both locally and globally, changing the perception the world has of our developers; we are not just users of software tools, we are also Software creators.
You are welcome to our documentation guide; if you are looking to join OSCA-Kampala Chapter and want to learn more about Free and Open Source Software and also want to know how you can make a contribution to any of our projects. Read this documentaion as a guide; Although it is a work in progress, please feel free to contribute and give us feedback to improve it.
To suggest changes, click the GitHub icon on any docs page and make a pull request. If you're not sure how to do that, read our documentation contribution guidelines.
If you need more help, please contact us at [email protected] or join the #documentation
channel on our Discord server.
To get started in the open source there's a multitude of tools you can use but first of all you will need to know about OSCA Kampala. Read our Introduction section:
📰 Subscribe to OSCA-KLA Newsletter
Please use our dedicated channels for questions and discussion. Help is much more valuable if it's shared publicly so that more people can benefit from it.
Type | Platforms |
---|---|
🚨 Bug Reports | GitHub Issue Tracker |
🎁 Feature Requests & Ideas | GitHub Issue Tracker |
👩💻 Usage Questions | Github Discussions |
🗯 General Discussion | Github Discussions or Gitter Room |
Type | Links |
---|---|
💼 Documentation | Documents |
⚒️ Built Tools | Made in Uganda |
👩💻 Contributing | CONTRIBUTING.md |
If you need more help, please join our whatsapp group Whatsapp group, Telegram Chat or join our Discord server.
This project follows the all-contributors specification. Contributions of any kind are welcome!
In order to create a docker container image, you can use the steps below
Clone this repository and navigate into its directory
Ensure you have minikube installed
Run the commands below
minikube start
kubectl get nodes
docker image build -t <dockerhub_username>/small-web-img:0.1 .
You can then be able to upload your image to the hub using the commands below
docker login
docker image push <dockerhub_username>/small-web-img:0.1
Incase you wish to run a the uploaded container image you can do so like below
docker run --rm --name osca_website -p8080:3000 <dockerhub_username>/small-web-img:0.1
Then you are able to check it out on
http://localhost:8080/
- React.js as the front-end library
- Next.js as the react framework
- Tailwind css
The react-reveal
library was used for the animations like those on the home page, for example.
Installation
In the command prompt run:
npm install react-reveal --save
Alternatively you may use yarn
:
yarn add react-reveal
For more about how the react-reveal
library works, you can read its documentation.