-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
37f703d
commit b3473ec
Showing
9 changed files
with
145 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: Push to Space | ||
on: push | ||
|
||
jobs: | ||
push-to-space: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Deta Space Deployment Github Action | ||
uses: neobrains/space-deployment-github-action@v0.5 | ||
with: | ||
access_token: ${{ secrets.ACCESS_TOKEN }} | ||
project_id: ${{ secrets.PROJECT_ID }} | ||
space_push: true | ||
list_on_discovery: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Spacefile Docs: https://go.deta.dev/docs/spacefile/v0 | ||
v: 0 | ||
micros: | ||
- name: client | ||
src: ./ | ||
engine: next | ||
primary: true |
Submodule app
updated
4 files
+1 −1 | Dockerfile | |
+23 −0 | deepnote/generateNotebooks.py | |
+49 −0 | deepnote/master.ipynb | |
+62 −70 | deepnote/simpleKurves.ipynb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import React from 'react'; | ||
import { PlanetGalleryIndexComp } from '../../../../pages/tests/planets'; | ||
|
||
interface Anomaly { | ||
id: string; | ||
name: string; | ||
icon: string; | ||
} | ||
|
||
interface GardenProps { | ||
anomalies: Anomaly[]; | ||
} | ||
|
||
const Garden: React.FC<GardenProps> = ({ anomalies }) => { | ||
return ( | ||
<div style={{ backgroundImage: `url('/garden.png')` }} className="bg-cover bg-center h-screen w-screen flex items-center justify-center relative"> | ||
{/* <button className="p-2 bg-blue-500 text-white">Add Anomaly</button> */} | ||
<PlanetGalleryIndexComp /> | ||
{anomalies.map((anomaly) => ( | ||
<img key={anomaly.id} src={anomaly.icon} alt={anomaly.name} className="absolute top-0 left-0 w-16 h-16" /> | ||
))} | ||
</div> | ||
); | ||
}; | ||
|
||
export default Garden; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import React from "react"; | ||
import Garden from "../components/Gameplay/Content/Map/Garden"; | ||
|
||
export default function GardenPage() { | ||
return ( | ||
<Garden anomalies={[]} /> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.