mirror of
https://git.sr.ht/~cadence/bibliogram
synced 2024-11-22 08:07:30 +00:00
Compare commits
2 Commits
6b667f5f00
...
3b18a7028e
Author | SHA1 | Date | |
---|---|---|---|
|
3b18a7028e | ||
|
4bf96b8d49 |
@ -1,27 +0,0 @@
|
|||||||
# Editor stuff
|
|
||||||
.vscode
|
|
||||||
|
|
||||||
# Test stuff
|
|
||||||
test
|
|
||||||
coverage
|
|
||||||
.nyc_output
|
|
||||||
src/lib/utils/saved_requests/files
|
|
||||||
|
|
||||||
# Database stuff
|
|
||||||
db
|
|
||||||
*.log
|
|
||||||
*.csv
|
|
||||||
|
|
||||||
# Personal stuff
|
|
||||||
notes.txt
|
|
||||||
config.js
|
|
||||||
|
|
||||||
# Cached stuff
|
|
||||||
db
|
|
||||||
node_modules
|
|
||||||
|
|
||||||
# Stuff Docker doesn't need
|
|
||||||
.git
|
|
||||||
art
|
|
||||||
*.log
|
|
||||||
*.csv
|
|
13
Dockerfile
13
Dockerfile
@ -1,13 +0,0 @@
|
|||||||
FROM node:14.5.0-alpine as build
|
|
||||||
RUN apk --no-cache add git python3 make g++
|
|
||||||
WORKDIR /app
|
|
||||||
COPY . .
|
|
||||||
COPY ./.config.js.default ./config.js
|
|
||||||
RUN npm install --no-optional
|
|
||||||
|
|
||||||
FROM node:14.5.0-alpine as app
|
|
||||||
WORKDIR /app
|
|
||||||
COPY --from=build /app /app
|
|
||||||
RUN apk add --no-cache graphicsmagick
|
|
||||||
EXPOSE 10407
|
|
||||||
CMD ["npm", "start"]
|
|
1
Procfile
1
Procfile
@ -1 +0,0 @@
|
|||||||
web: npm run $(test "$BIBLIOGRAM_ENTRY" = 'assistant' && echo 'assistant' || echo 'start')
|
|
6
app.json
6
app.json
@ -1,6 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "Bibliogram",
|
|
||||||
"description": "An alternative front-end for Instagram.",
|
|
||||||
"repository": "https://git.sr.ht/~cadence/bibliogram",
|
|
||||||
"logo": "https://bibliogram.art/android-chrome-192x192.png"
|
|
||||||
}
|
|
@ -1,12 +0,0 @@
|
|||||||
version: '3'
|
|
||||||
volumes:
|
|
||||||
db:
|
|
||||||
services:
|
|
||||||
bibliogram:
|
|
||||||
build: .
|
|
||||||
image: cloudrac3r/bibliogram
|
|
||||||
volumes:
|
|
||||||
- db:/app/db
|
|
||||||
ports:
|
|
||||||
- 10407:10407
|
|
||||||
restart: unless-stopped
|
|
Loading…
Reference in New Issue
Block a user