https://github.com/docknetwork/developer-program
Details about the Dock external developer program.
https://github.com/docknetwork/developer-program
Last synced: about 1 year ago
JSON representation
Details about the Dock external developer program.
- Host: GitHub
- URL: https://github.com/docknetwork/developer-program
- Owner: docknetwork
- License: mit
- Created: 2021-10-15T18:28:29.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-02-22T21:43:53.000Z (about 2 years ago)
- Last Synced: 2024-02-22T22:37:59.914Z (about 2 years ago)
- Language: Makefile
- Size: 362 KB
- Stars: 3
- Watchers: 8
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# developer-program
Main website for Dock developer program.
Website is built with Jekyll (https://jekyllrb.com/docs/) and webpack (https://webpack.js.org/).
## Prerequisites
In order to run the app in development mode, you must have docker installed. (https://www.docker.com/get-started)
### Styles
Website is styled using tailwindcss (https://tailwindcss.com/), daisyui (https://daisyui.com/) and heroicons (https://heroicons.com).
Styles can be modified in `webpack/style.css` file.
### Commands
```bash
make setup # starts the docker container and installs all necessary packages
```
```bash
make up # starts webite in development mode
```
```bash
make down # removes old containers
```
### Development
```bash
make up
open http://localhost:4000
```
### Deployment
:warning: Make sure you compile and commit static assets before you merge your changes.
```bash
make build-assets
```
Website is deployed automaticaly after you merge your branch into the `main` branch.