Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert to monorepo (and a few other bits) #398

Open
wants to merge 35 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
958b274
Update publish step
eduardoboucas Dec 6, 2020
17d8d76
Update Octokit usage
eduardoboucas Dec 6, 2020
2dc23ab
Extract ReCaptcha to separate service
eduardoboucas Dec 6, 2020
f32e53e
Make RSA optional
eduardoboucas Dec 6, 2020
8e4bfec
Temporarily disable problematic test
eduardoboucas Dec 6, 2020
4b5a377
3.0.0-beta.0
eduardoboucas Dec 6, 2020
d93c97d
Update entry point
eduardoboucas Dec 6, 2020
3431224
3.0.0-beta.1
eduardoboucas Dec 6, 2020
39d8022
Make config file optional
eduardoboucas Dec 7, 2020
465ab5b
3.0.0-beta.2
eduardoboucas Dec 7, 2020
ade2632
Add Lerna monorepo
eduardoboucas Dec 21, 2020
bdadfe0
Create config package
eduardoboucas Dec 22, 2020
082a010
Add @staticman/netlify-functions
eduardoboucas Dec 22, 2020
e016d84
v1.0.0
eduardoboucas Dec 22, 2020
dbfdf53
Reset package locks
eduardoboucas Dec 22, 2020
6462363
v1.1.0
eduardoboucas Dec 22, 2020
dd59c8e
Update packages scope
eduardoboucas Dec 22, 2020
c27bc90
v1.1.1
eduardoboucas Dec 22, 2020
fe2dab6
v1.1.2
eduardoboucas Dec 22, 2020
0161c9f
Update package dependency
eduardoboucas Dec 23, 2020
f69d500
v1.1.3
eduardoboucas Dec 23, 2020
ae1bd55
Allow wildcard in sites block
eduardoboucas Dec 23, 2020
c848a8b
v1.2.0
eduardoboucas Dec 23, 2020
c0892cc
Accept site config in constructor
eduardoboucas Dec 23, 2020
ea63faf
v1.3.0
eduardoboucas Dec 23, 2020
e57305a
Allow user-supplied parameters to constructor in @staticman/netlify-f…
eduardoboucas Dec 23, 2020
e38ecf5
v1.4.0
eduardoboucas Dec 23, 2020
2b97390
Revert changes to processEntry in @staticman/netlify-functions
eduardoboucas Dec 23, 2020
0844e5e
v1.5.0
eduardoboucas Dec 23, 2020
d66313b
Change order of arguments in processEntry method
eduardoboucas Dec 23, 2020
3e42f96
v1.6.0
eduardoboucas Dec 23, 2020
57b9a6a
Add support for relative redirect URLs
eduardoboucas Dec 23, 2020
be800dd
v1.7.0
eduardoboucas Dec 23, 2020
bec233f
Add @octokit/core dependency
eduardoboucas Dec 23, 2020
5c412fd
v1.7.1
eduardoboucas Dec 23, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file removed .env
Empty file.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.idea/
.vscode/
*.iml
.DS_Store

config.json
config/*.json
Expand Down
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<img src="logo.png" width="300">

# Staticman [![coverage](https://img.shields.io/badge/coverage-81%25-yellow.svg?style=flat)](https://github.com/eduardoboucas/staticman) [![Build Status](https://travis-ci.org/eduardoboucas/staticman.svg?branch=master)](https://travis-ci.org/eduardoboucas/staticman) [![JavaScript Style Guide](https://img.shields.io/badge/code_style-airbnb-brightgreen.svg)](https://github.com/airbnb/javascript)
# Staticman [![coverage](https://img.shields.io/badge/coverage-81%25-yellow.svg?style=flat)](https://github.com/eduardoboucas/staticman) [![Build Status](https://travis-ci.org/eduardoboucas/staticman.svg?branch=master)](https://travis-ci.org/eduardoboucas/staticman) [![JavaScript Style Guide](https://img.shields.io/badge/code_style-airbnb-brightgreen.svg)](https://github.com/airbnb/javascript) [![lerna](https://img.shields.io/badge/maintained%20with-lerna-cc00ff.svg)](https://lerna.js.org/)

> Static sites with superpowers

Expand Down Expand Up @@ -31,6 +31,7 @@ NOTE: The below steps are not required if deploying to Heroku. To deploy to Hero
git clone [email protected]:eduardoboucas/staticman.git
cd staticman
npm install
npm run bootstrap
```

- Create a development config file from the sample file.
Expand All @@ -41,6 +42,12 @@ NOTE: The below steps are not required if deploying to Heroku. To deploy to Hero

- Edit the newly-created config file with your GitHub and/or GitLab access token, SSH private key and the port to run the server. Click [here](https://staticman.net/docs/api) for the list of available configuration parameters.

- Build the application bundle

```
npm run build
```

- Start the server.

```
Expand Down
6 changes: 6 additions & 0 deletions lerna-debug.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
54 error Error: Command failed: git tag v1.0.0 -m v1.0.0
54 error fatal: tag 'v1.0.0' already exists
54 error
54 error at makeError (/usr/local/lib/node_modules/lerna/node_modules/execa/index.js:174:9)
54 error at /usr/local/lib/node_modules/lerna/node_modules/execa/index.js:278:16
54 error at processTicksAndRejections (internal/process/task_queues.js:97:5)
6 changes: 6 additions & 0 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"packages": [
"packages/*"
],
"version": "1.7.1"
}
Loading