File tree 6 files changed +12
-86
lines changed
6 files changed +12
-86
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 50
50
# Ignore any package-lock or yarn.lock if using a different package manager
51
51
# Uncomment the one you're not using
52
52
** /yarn.lock
53
- # **/package-lock.json
54
- # **/pnpm-lock.yaml
Original file line number Diff line number Diff line change
1
+ # Copyright 2023 The Magma Authors.
2
+
3
+ # This source code is licensed under the BSD-style license found in the
4
+ # LICENSE file in the root directory of this source tree.
5
+
6
+ # Unless required by applicable law or agreed to in writing, software
7
+ # distributed under the License is distributed on an "AS IS" BASIS,
8
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9
+ # See the License for the specific language governing permissions and
10
+ # limitations under the License.
11
+
1
12
FROM node:20-alpine AS base
2
13
3
14
WORKDIR /
@@ -19,20 +30,3 @@ COPY . .
19
30
# Development stage
20
31
FROM base AS development
21
32
CMD ["npm" , "run" , "start" ]
22
-
23
- # # Production stage
24
- # FROM base AS build
25
- # RUN npm run build
26
-
27
- # # Use Nginx to serve static files
28
- # FROM nginx:alpine
29
- # WORKDIR /usr/share/nginx/html
30
-
31
- # # Copy build output from the previous stage
32
- # COPY --from=build /app/build .
33
-
34
- # # Expose port for web server
35
- # EXPOSE 80
36
-
37
- # # Start Nginx
38
- # CMD ["nginx", "-g", "daemon off;"]
Original file line number Diff line number Diff line change @@ -19,15 +19,3 @@ services:
19
19
environment :
20
20
- NODE_ENV=development
21
21
command : npm run start
22
-
23
- # docusaurus-prod:
24
- # build:
25
- # context: .
26
- # target: build
27
- # cache_from:
28
- # - docusaurus-prod
29
- # container_name: docusaurus_prod
30
- # ports:
31
- # - "8080:80"
32
- # environment:
33
- # - NODE_ENV=production
Original file line number Diff line number Diff line change @@ -38,10 +38,6 @@ const config = {
38
38
( {
39
39
docs : {
40
40
sidebarPath : './sidebars.js' ,
41
- // Please change this to your repo.
42
- // Remove this to remove the "edit this page" links.
43
- editUrl :
44
- 'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/' ,
45
41
} ,
46
42
theme : {
47
43
customCss : './src/css/custom.css' ,
@@ -53,8 +49,7 @@ const config = {
53
49
themeConfig :
54
50
/** @type {import('@docusaurus/preset-classic').ThemeConfig } */
55
51
( {
56
- // Replace with your project's social card at /docusaurus/static/img/
57
- // image: 'img/docusaurus-social-card.jpg',
52
+ image : 'img/magma_icon.png' ,
58
53
navbar : {
59
54
title : 'Magma' ,
60
55
logo : {
You can’t perform that action at this time.
0 commit comments