A very basic website (vanilla JS, HTML, CSS) to host the content of the PLAYGROUND sessions. It's an evolving project with plenty of experimentation, so please expect short-cuts; the use-case isn't very formal so does it need to be very strict.
Check it here: https://playyground.art/
- Clone the Repository
git clone https://github.com/your-username/playground.git
cd playground
- Run a Local Server
To play around locally, you can use Python's built-in HTTP server. Run the following command in your terminal:
python3 -m http.server
This will start a local server at http://localhost:8000. Open this URL in your web browser to see the website.
- Pick Up an Issue
Feel free to pick up an issue from the issues on GitHub. Contributions are welcome!
After setting up a local environment.
- Create a new Branch
git checkout -b feature-branch
This project isn't following any strict naming conventions, it's a very small project, so just make it something relevant to what the feature will be about. It can be useful, if the branch relates to an Github issue, to reference that issue + the number of the issue in the branch name.
e.g. 1-language-switch
Code your changes.
- Commit your changes
git commit -m 'Add some feature'
- Push to the Branch
git push origin feature-branch
- Open a Pull Request