Rename the project

Signed-off-by: Arthur DANJOU <arthurdanjou@outlook.fr>
This commit is contained in:
2021-08-05 15:50:29 +02:00
parent 94f6175e71
commit 353764a8a3
7 changed files with 11 additions and 11 deletions

View File

@@ -1,9 +1,9 @@
FROM node:15.8.0-alpine3.10
RUN mkdir -p /usr/src/artapi
WORKDIR /usr/src/artapi
RUN mkdir -p /usr/src/athena
WORKDIR /usr/src/athena
COPY . /usr/src/artapi
COPY . /usr/src/athena
RUN apk update && \
apk add git
@@ -14,7 +14,7 @@ RUN yarn build
RUN cp .env build
WORKDIR /usr/src/artapi/build
WORKDIR /usr/src/athena/build
RUN yarn install --production

View File

@@ -1,6 +1,6 @@
# ArtApi 🧠
# Athena 🧠
ArtAPi is my personnal api connected to my instances
Athena is my personal api connected to my instances
## Features ✨
@@ -26,4 +26,4 @@ ArtAPi is my personnal api connected to my instances
## License 📑
Copyright © 2020 - [@ArthurDanj](https://arthurdanjou.fr) \
This project is [MIT](https://github.com/ArthurDanjou/artapi/blob/master/LICENSE) Licensed.
This project is [MIT](https://github.com/ArthurDanjou/athena/blob/master/LICENSE) Licensed.

View File

@@ -40,7 +40,7 @@ const redisConfig: RedisConfig = {
port: Env.get('REDIS_PORT'),
password: Env.get('REDIS_PASSWORD', ''),
db: Env.get('REDIS_DB', 0),
keyPrefix: 'artapi:',
keyPrefix: 'athena:',
healthCheck: true
},
},

View File

@@ -36,7 +36,7 @@ const sessionConfig: SessionConfig = {
| The name of the cookie that will hold the session id.
|
*/
cookieName: 'artapi-session',
cookieName: 'athena-session',
/*
|--------------------------------------------------------------------------

View File

@@ -1,5 +1,5 @@
{
"name": "artapi",
"name": "athena",
"version": "1.0.0",
"private": true,
"scripts": {

View File

@@ -1,4 +1,4 @@
import './artsite'
import './artapi'
import './api'
import './auth'
import './home'