Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshinorin committed Feb 15, 2022
1 parent 6e1a226 commit 1ef490d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
# [WIP] Qualtet
# Qualtet

*Qualtet is an API-based blogging system (server-side).*

|Build|Coverage|API Doc|
|---|---|---|
|[![CI](https://img.shields.io/github/workflow/status/yoshinorin/qualtet/CI/master?label=CI)](https://github.com/yoshinorin/qualtet/actions)|[![Coverage Status](https://coveralls.io/repos/github/yoshinorin/qualtet/badge.svg?branch=master)](https://coveralls.io/github/yoshinorin/qualtet?branch=master)|[![](https://img.shields.io/badge/Doc-Swagger-blue.svg)](https://yoshinorin.github.io/qualtet/)|
|Latest|Build|Coverage|API Doc|
|---|---|---|---|
|![](https://img.shields.io/badge/Release-v1.0.0-blue.svg?style=flat-square)|[![CI](https://img.shields.io/github/workflow/status/yoshinorin/qualtet/CI/master?label=CI)](https://github.com/yoshinorin/qualtet/actions)|[![Coverage Status](https://coveralls.io/repos/github/yoshinorin/qualtet/badge.svg?branch=master)](https://coveralls.io/github/yoshinorin/qualtet?branch=master)|[![](https://img.shields.io/badge/Doc-Swagger-blue.svg)](https://yoshinorin.github.io/qualtet/)|

## Related Repositories

|||
|---|---|
|[Hexo](https://github.com/hexojs)|Local content manager.|
|[Qualtet](https://github.com/yoshinorin/qualtet)|API-based blogging system (server-side).|
|[Quintet](https://github.com/yoshinorin/quintet)|The front end for Qualtet.|
|[Quintet](https://github.com/yoshinorin/quintet)|The front end for the Qualtet.|

## Table of contents

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import scala.sys.process.Process

organization := "net.yoshinorin"
name := "qualtet"
version := "v1.0.0-SNAPSHOT-6"
version := "v1.0.0"
scalaVersion := "2.13.5"

scalacOptions ++= Seq(
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ RUN apt-get update -y \

WORKDIR /usr/opt

RUN git clone --depth 1 --branch v1.0.0-SNAPSHOT-6 https://github.com/yoshinorin/qualtet.git
RUN git clone --depth 1 --branch v1.0.0 https://github.com/yoshinorin/qualtet.git

WORKDIR /usr/opt/qualtet

COPY entry-point.sh entry-point.sh

RUN rm -rf scripts docs docker .github .gitignore .editorconfig .git .env .env.example \
&& sbt assembly exit \
&& cp ./target/scala-2.13/qualtet-assembly-v1.0.0-SNAPSHOT-6.jar qualtet-assembly.jar \
&& cp ./target/scala-2.13/qualtet-assembly-v1.0.0.jar qualtet-assembly.jar \
&& chmod +x entry-point.sh

ENTRYPOINT [ "/usr/opt/qualtet/entry-point.sh" ]
2 changes: 0 additions & 2 deletions docs/features.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,5 +71,3 @@
- [x] RSS
- [x] Sitemap
- [ ] GraphQL
- [ ] Robots.txt
- implement with front end?

0 comments on commit 1ef490d

Please sign in to comment.