Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joeljuca/sandboxes
A collection of sandboxes for quick experimentations
https://github.com/joeljuca/sandboxes
Last synced: about 2 months ago
JSON representation
A collection of sandboxes for quick experimentations
- Host: GitHub
- URL: https://github.com/joeljuca/sandboxes
- Owner: joeljuca
- License: isc
- Created: 2023-04-28T13:16:47.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-15T01:43:29.000Z (11 months ago)
- Last Synced: 2024-02-15T02:31:08.075Z (11 months ago)
- Language: Makefile
- Homepage:
- Size: 40 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Sandboxes
[![Licensed under ISC](https://img.shields.io/github/license/joeljuca/sandboxes "Licensed under ISC")](LICENSE)
A collection of pre-configured sandboxes to experiment with different technologies.
## Usage
Each dir is a sandbox. To use one, clone the Git repo in your machine, duplicate the desired sandbox into your local projects dir, and rename it as you wish.
### degit
If you have Node.js installed, you can use [degit](https://www.npmjs.com/package/degit) to do the hard work for you:
```
$ npx degit joeljuca/sandboxes/
```### Makefiles
Each sandbox should have a `Makefile` with at least the following tasks (targets):
- `build`
- `lint`
- `fmt`
- `test`Also, if the sandbox uses a database, the following tasks should also be present:
- `db.create`
- `db.migrate`
- `db.drop`
- `db.repl`
- `db.setup` (alias for `make db.create && make db.migrate`)
- `db.reset` (alias for `make db.drop && make db.setup`)## License
Licensed under [ISC](LICENSE)