Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/proxima-project/proxima.fun
https://github.com/proxima-project/proxima.fun
baystation baystation12 bs12 byond discord docker github mediawiki qiwi qiwi-wallet single-page-site ss13 vite vitejs volar vue vue3 vuejs vuejs3 wiki
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/proxima-project/proxima.fun
- Owner: Proxima-Project
- License: mit
- Created: 2024-02-04T19:14:14.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2024-03-08T17:22:28.000Z (8 months ago)
- Last Synced: 2024-10-10T18:41:52.380Z (26 days ago)
- Topics: baystation, baystation12, bs12, byond, discord, docker, github, mediawiki, qiwi, qiwi-wallet, single-page-site, ss13, vite, vitejs, volar, vue, vue3, vuejs, vuejs3, wiki
- Language: Vue
- Homepage: https://hub.docker.com/r/gesugaosan/proxima.fun
- Size: 9.11 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.Docker.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
### Building and running your application
When you're ready, start your application by running:
`docker compose up --build`.Your application will be available at http://localhost:8080.
### Deploying your application to the cloud
First, build your image, e.g.: `docker build -t myapp .`.
If your cloud uses a different CPU architecture than your development
machine (e.g., you are on a Mac M1 and your cloud provider is amd64),
you'll want to build the image for that platform, e.g.:
`docker build --platform=linux/amd64 -t myapp .`.Then, push it to your registry, e.g. `docker push myregistry.com/myapp`.
Consult Docker's [getting started](https://docs.docker.com/go/get-started-sharing/)
docs for more detail on building and pushing.### References
* [Docker's Node.js guide](https://docs.docker.com/language/nodejs/)